diff options
Diffstat (limited to 'preprocessor.py')
-rw-r--r-- | preprocessor.py | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/preprocessor.py b/preprocessor.py index 5c71fe226..b5f2e3a4a 100644 --- a/preprocessor.py +++ b/preprocessor.py @@ -17,6 +17,12 @@ from extras.pokemontools.crystal import ( movement_command_classes, music_classes, effect_classes, + ChannelCommand, + OctaveCommand, +) + +from extras.pokemontools.audio import ( + Note, ) def load_pokecrystal_macros(): @@ -31,6 +37,9 @@ def load_pokecrystal_macros(): Signpost, PeopleEvent, DataByteWordMacro, + ChannelCommand, + OctaveCommand, + Note, ] ourmacros += command_classes |