Skip to content

Commit

Permalink
fix for start_inventory
Browse files Browse the repository at this point in the history
  • Loading branch information
threeandthreee committed Sep 12, 2024
1 parent 32cee0e commit a55749b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion worlds/ladx/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ def create_items(self) -> None:
for _ in range(count):
if item_name in exclude:
exclude.remove(item_name) # this is destructive. create unique list above
self.multiworld.itempool.append(self.create_item("Master Stalfos' Message"))
self.multiworld.itempool.append(self.create_item("Nothing"))
else:
item = self.create_item(item_name)

Expand Down

0 comments on commit a55749b

Please sign in to comment.