mirror of
https://gitlab.com/xCrystal/pokecrystal-board.git
synced 2024-09-09 09:51:34 -07:00
preprocessor: rename macro class Wait to BattleAnimWait
This commit is contained in:
parent
f2025afdb6
commit
e56aa096a3
@ -26,7 +26,7 @@ from extras.pokemontools.audio import (
|
|||||||
)
|
)
|
||||||
|
|
||||||
from extras.pokemontools.battle_animations import (
|
from extras.pokemontools.battle_animations import (
|
||||||
Wait,
|
BattleAnimWait,
|
||||||
battle_animation_classes,
|
battle_animation_classes,
|
||||||
)
|
)
|
||||||
|
|
||||||
@ -45,7 +45,6 @@ def load_pokecrystal_macros():
|
|||||||
ChannelCommand,
|
ChannelCommand,
|
||||||
OctaveCommand,
|
OctaveCommand,
|
||||||
Note,
|
Note,
|
||||||
Wait,
|
|
||||||
]
|
]
|
||||||
|
|
||||||
ourmacros += command_classes
|
ourmacros += command_classes
|
||||||
@ -54,7 +53,7 @@ def load_pokecrystal_macros():
|
|||||||
ourmacros += movement_command_classes
|
ourmacros += movement_command_classes
|
||||||
ourmacros += music_classes
|
ourmacros += music_classes
|
||||||
ourmacros += effect_classes
|
ourmacros += effect_classes
|
||||||
ourmacros += battle_animation_classes
|
ourmacros += battle_animation_classes + [BattleAnimWait]
|
||||||
|
|
||||||
return ourmacros
|
return ourmacros
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user