diff options
author | yenatch <yenatch@gmail.com> | 2013-12-25 06:19:37 -0500 |
---|---|---|
committer | yenatch <yenatch@gmail.com> | 2013-12-25 06:57:45 -0500 |
commit | e56aa096a31c288031770acb8570f5249281c4b0 (patch) | |
tree | 29fd0272bedf07e25edbcf83a200d96490ccb637 /preprocessor.py | |
parent | f2025afdb6b549c7691183b558bf5a6998fd5696 (diff) |
preprocessor: rename macro class Wait to BattleAnimWait
Diffstat (limited to 'preprocessor.py')
-rw-r--r-- | preprocessor.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/preprocessor.py b/preprocessor.py index 93508c027..f5bc08637 100644 --- a/preprocessor.py +++ b/preprocessor.py @@ -26,7 +26,7 @@ from extras.pokemontools.audio import ( ) from extras.pokemontools.battle_animations import ( - Wait, + BattleAnimWait, battle_animation_classes, ) @@ -45,7 +45,6 @@ def load_pokecrystal_macros(): ChannelCommand, OctaveCommand, Note, - Wait, ] ourmacros += command_classes @@ -54,7 +53,7 @@ def load_pokecrystal_macros(): ourmacros += movement_command_classes ourmacros += music_classes ourmacros += effect_classes - ourmacros += battle_animation_classes + ourmacros += battle_animation_classes + [BattleAnimWait] return ourmacros |