diff --git a/worlds/ladx/__init__.py b/worlds/ladx/__init__.py index e1d09e10ad7d..181cc053222d 100644 --- a/worlds/ladx/__init__.py +++ b/worlds/ladx/__init__.py @@ -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