Skip to content

Commit

Permalink
copy paste mistake
Browse files Browse the repository at this point in the history
  • Loading branch information
alwaysintreble committed Nov 22, 2023
1 parent 0c6ecc7 commit 20ce55a
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 @@ -513,7 +513,7 @@ def collect(self, state, item: Item) -> bool:
return change

def remove(self, state, item: Item) -> bool:
change = super().collect(state, item)
change = super().remove(state, item)
if change and item.name in self.rupees:
state.prog_items[self.player]["RUPEES"] -= self.rupees[item.name]
return change

0 comments on commit 20ce55a

Please sign in to comment.