add is_switch_prompt to the input poll detector

This commit is contained in:
Bryan Bishop
2013-11-11 21:52:12 -06:00
parent ba6eb203b4
commit cc4c248167

View File

@@ -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()
return self.is_player_turn() or self.is_mandatory_switch() or self.is_switch_prompt()
def is_fight_pack_run_menu(self):
"""