summaryrefslogtreecommitdiff
path: root/preprocessor.py
diff options
context:
space:
mode:
authoryenatch <yenatch@gmail.com>2013-12-25 06:19:37 -0500
committeryenatch <yenatch@gmail.com>2013-12-25 06:57:45 -0500
commite56aa096a31c288031770acb8570f5249281c4b0 (patch)
tree29fd0272bedf07e25edbcf83a200d96490ccb637 /preprocessor.py
parentf2025afdb6b549c7691183b558bf5a6998fd5696 (diff)
preprocessor: rename macro class Wait to BattleAnimWait
Diffstat (limited to 'preprocessor.py')
-rw-r--r--preprocessor.py5
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