From e56aa096a31c288031770acb8570f5249281c4b0 Mon Sep 17 00:00:00 2001 From: yenatch Date: Wed, 25 Dec 2013 06:19:37 -0500 Subject: [PATCH] preprocessor: rename macro class Wait to BattleAnimWait --- preprocessor.py | 5 ++--- 1 file 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