diff options
author | Bryan Bishop <kanzure@gmail.com> | 2013-09-22 02:46:40 -0500 |
---|---|---|
committer | Bryan Bishop <kanzure@gmail.com> | 2013-09-22 02:46:40 -0500 |
commit | a04f6ceb4b98d9b37390905b7ab60bd5e35fcc21 (patch) | |
tree | f47fda4f026597f1b3bb0d75bbfe3b40eaa1250c /pokemontools/vba/autoplayer.py | |
parent | 7d3994ae753d3fa208401afbab6678328d6ecc8e (diff) |
fix cyndaquil selection in Elm's Lab
Diffstat (limited to 'pokemontools/vba/autoplayer.py')
-rw-r--r-- | pokemontools/vba/autoplayer.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pokemontools/vba/autoplayer.py b/pokemontools/vba/autoplayer.py index aa57825..5bbf91e 100644 --- a/pokemontools/vba/autoplayer.py +++ b/pokemontools/vba/autoplayer.py @@ -257,7 +257,7 @@ class SpeedRunner(Runner): if starter_choice.lower() == "cyndaquil": moves = 0 - if starter_choice.lower() == "totodile": + elif starter_choice.lower() == "totodile": moves = 1 else: moves = 2 |