diff options
author | yenatch <yenatch@gmail.com> | 2013-12-25 06:19:06 -0500 |
---|---|---|
committer | yenatch <yenatch@gmail.com> | 2013-12-25 06:19:06 -0500 |
commit | dd471c6d5ddde53be5fffffa44ad323bde95ade9 (patch) | |
tree | 3f7da90503ebe5c5c0d74ce5dd7bc5fd3670767c /pokemontools/battle_animations.py | |
parent | f0538721a3cc55a909462f42af077a749aca5e38 (diff) |
rename battle animation command class Wait to BattleAnimWait
Diffstat (limited to 'pokemontools/battle_animations.py')
-rw-r--r-- | pokemontools/battle_animations.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pokemontools/battle_animations.py b/pokemontools/battle_animations.py index f32ed1b..349c6fa 100644 --- a/pokemontools/battle_animations.py +++ b/pokemontools/battle_animations.py @@ -137,7 +137,7 @@ def create_battle_animation_classes(): battle_animation_classes = create_battle_animation_classes() -class Wait(Command): +class BattleAnimWait(Command): macro_name = 'anim_wait' size = 1 end = macro_name in battle_animation_enders @@ -228,7 +228,7 @@ class BattleAnim: def get_command_class(self, cmd): if cmd < 0xd0: - return Wait + return BattleAnimWait for class_ in battle_animation_classes: if class_.id == cmd: return class_ |