diff options
author | Bryan Bishop <kanzure@gmail.com> | 2013-11-13 21:45:05 -0600 |
---|---|---|
committer | Bryan Bishop <kanzure@gmail.com> | 2013-11-13 21:45:05 -0600 |
commit | 79bc5088895d087b5338cb4519d7e5d748ce1faf (patch) | |
tree | 7bbde34cc59284141274a91a1601f674a4ce3b7b | |
parent | 28393a5342a3f6ad3c1511f81ff86ab4fe9216a2 (diff) |
better "is input required" detector
-rw-r--r-- | pokemontools/vba/battle.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pokemontools/vba/battle.py b/pokemontools/vba/battle.py index a0e111f..409d9a8 100644 --- a/pokemontools/vba/battle.py +++ b/pokemontools/vba/battle.py @@ -38,7 +38,7 @@ class Battle(EmulatorController): """ Detects if the battle is waiting for player input. """ - return self.is_player_turn() or self.is_mandatory_switch() or self.is_trainer_switch_prompt() + return self.is_player_turn() or self.is_mandatory_switch() or self.is_switch_prompt() def is_fight_pack_run_menu(self): """ |