diff options
-rw-r--r-- | pokemontools/vba/battle.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pokemontools/vba/battle.py b/pokemontools/vba/battle.py index 9546378..8897ccb 100644 --- a/pokemontools/vba/battle.py +++ b/pokemontools/vba/battle.py @@ -50,9 +50,9 @@ class Battle(EmulatorController): self.skip_crap() if self.is_player_turn(): - self.hook.handle_turn() + self.handle_turn() elif self.is_mandatory_switch(): - self.hook.handle_mandatory_switch() + self.handle_mandatory_switch() else: raise BattleException("unknown state, aborting") |