diff options
author | Bryan Bishop <kanzure@gmail.com> | 2013-11-09 15:18:55 -0600 |
---|---|---|
committer | Bryan Bishop <kanzure@gmail.com> | 2013-11-09 15:18:55 -0600 |
commit | b363e6cca00c05687c34d735abb93d5117f7b209 (patch) | |
tree | c73b54349ee49a18d2a9a2862da4b1f1284ea4d0 | |
parent | 8c7e2bcae7d07e28ee229ae958d94ec3809dc763 (diff) |
fix a syntax error in battle.py
-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 3bda1a5..5aeb923 100644 --- a/pokemontools/vba/battle.py +++ b/pokemontools/vba/battle.py @@ -168,7 +168,7 @@ class BattleStrategy(Battle): # the game failed to do a blackout.. not sure what to do now. raise BattleException("No partymons left. wtf?") - return pokemon.id + return pokemon.id def handle_turn(self): """ |