diff options
author | Bryan Bishop <kanzure@gmail.com> | 2013-11-13 21:44:21 -0600 |
---|---|---|
committer | Bryan Bishop <kanzure@gmail.com> | 2013-11-13 21:44:21 -0600 |
commit | 28393a5342a3f6ad3c1511f81ff86ab4fe9216a2 (patch) | |
tree | b2b0d36f183f47de7580b31618079e0ce5683cbf /pokemontools/vba/vba.py | |
parent | 257ddde525c4cbe6c4623a444c5d82ef8039bb45 (diff) |
fix a variable typo in wild prompt detector
Diffstat (limited to 'pokemontools/vba/vba.py')
-rw-r--r-- | pokemontools/vba/vba.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pokemontools/vba/vba.py b/pokemontools/vba/vba.py index 57e5e1b..d221fef 100644 --- a/pokemontools/vba/vba.py +++ b/pokemontools/vba/vba.py @@ -634,7 +634,7 @@ class crystal(object): "Use next POKMON?", ] - return all([requirement in text for requirement in requirements]) + return all([requirement in screen_text for requirement in requirements]) def is_switch_prompt(self): """ |