diff --git a/tasks/bounty/ui.py b/tasks/bounty/ui.py index afa0a40..54b3330 100644 --- a/tasks/bounty/ui.py +++ b/tasks/bounty/ui.py @@ -22,7 +22,7 @@ class BountyUI(UI): return False def enter_stage(self, index: int) -> bool: - if BOUNTY_LIST.select_index_enter(index, self): + if BOUNTY_LIST.select_index_enter(self, index): return True return False diff --git a/tasks/stage/list.py b/tasks/stage/list.py index bbfe92e..d84835d 100644 --- a/tasks/stage/list.py +++ b/tasks/stage/list.py @@ -148,8 +148,8 @@ class StageList: def select_index_enter( self, - index: int, main: ModuleBase, + index: int, insight: bool = True, sweepable: bool = True, offset: tuple[int, int] = (-20, -15),