diff options
author | Bryan Bishop <kanzure@gmail.com> | 2013-06-25 23:47:22 -0500 |
---|---|---|
committer | Bryan Bishop <kanzure@gmail.com> | 2013-06-25 23:47:59 -0500 |
commit | aee96a5cf75d5731cb8cb8eb97ad16cb44a7b53e (patch) | |
tree | c063c6de31c8b892e95fe24a9098a29e0c8ec8e3 /extras/vba_autoplayer.py | |
parent | b710b8721eb12db39ba0413fdaede654999a426a (diff) | |
parent | 72fbe86c7aee557282322666c1c3a25fbe964b0b (diff) |
Merge branch 'cogitokat/master' into master.
fixes #152
Diffstat (limited to 'extras/vba_autoplayer.py')
-rw-r--r-- | extras/vba_autoplayer.py | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/extras/vba_autoplayer.py b/extras/vba_autoplayer.py index eafbff134..349fc2033 100644 --- a/extras/vba_autoplayer.py +++ b/extras/vba_autoplayer.py @@ -26,8 +26,10 @@ def main(): def skippable(func): """ - Makes a function skippable by saving the state before and after the - function runs. Pass "skip=True" to the function to load the previous save + Makes a function skippable. + + Saves the state before and after the function runs. + Pass "skip=True" to the function to load the previous save state from when the function finished. """ def wrapped_function(*args, **kwargs): @@ -433,6 +435,8 @@ def handle_elm(starter_choice): @skippable def new_bark_level_grind(level): """ + Do level grinding in New Bark. + Starting just outside of Elm's Lab, do some level grinding until the first partymon level is equal to the given value.. """ |