From 20ce55a304d5842c1133d010a193dc7a0ca78f68 Mon Sep 17 00:00:00 2001 From: alwaysintreble Date: Wed, 22 Nov 2023 16:18:52 -0600 Subject: [PATCH] copy paste mistake --- worlds/ladx/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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