diff options
-rw-r--r-- | pokemontools/vba/battle.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/pokemontools/vba/battle.py b/pokemontools/vba/battle.py index 3339a9f..4b7fb68 100644 --- a/pokemontools/vba/battle.py +++ b/pokemontools/vba/battle.py @@ -365,6 +365,8 @@ class Battle(EmulatorController): self.handle_mandatory_switch() elif self.is_levelup_screen(): self.emulator.vba.press("a", hold=5, after=30) + elif self.is_evolved_screen(): + self.emulator.vba.step(count=30) else: raise BattleException("unknown state, aborting") |