Skip to content

Commit

Permalink
Update __init__.py
Browse files Browse the repository at this point in the history
  • Loading branch information
gaithern committed May 18, 2024
1 parent 8fd9f15 commit 8975a0c
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions worlds/kh1/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,9 @@ def create_items(self):
item_pool += [self.create_item("Ansem's Report " + str(i+1))]
i = i + 1

while len(item_pool) > total_locations:
item_pool.pop(0)

print("KH1: Item Pool = " + str(len(item_pool)))
print("KH1: Locations = " + str(total_locations))
print("KH1: Level Up Item Pool = " + str(len(level_up_item_pool)))
Expand Down

0 comments on commit 8975a0c

Please sign in to comment.