shithub: pokecrystal

Download patch

ref: e56aa096a31c288031770acb8570f5249281c4b0
parent: f2025afdb6b549c7691183b558bf5a6998fd5696
author: yenatch <[email protected]>
date: Wed Dec 25 01:19:37 EST 2013

preprocessor: rename macro class Wait to BattleAnimWait

--- a/preprocessor.py
+++ b/preprocessor.py
@@ -26,7 +26,7 @@
 )
 
 from extras.pokemontools.battle_animations import (
-    Wait,
+    BattleAnimWait,
     battle_animation_classes,
 )
 
@@ -45,7 +45,6 @@
         ChannelCommand,
         OctaveCommand,
         Note,
-        Wait,
     ]
 
     ourmacros += command_classes
@@ -54,7 +53,7 @@
     ourmacros += movement_command_classes
     ourmacros += music_classes
     ourmacros += effect_classes
-    ourmacros += battle_animation_classes
+    ourmacros += battle_animation_classes + [BattleAnimWait]
 
     return ourmacros