diff options
Diffstat (limited to 'asm/macros/contest_ai_script.s')
-rwxr-xr-x | asm/macros/contest_ai_script.s | 14 |
1 files changed, 11 insertions, 3 deletions
diff --git a/asm/macros/contest_ai_script.s b/asm/macros/contest_ai_script.s index bff847025..55eba4be0 100755 --- a/asm/macros/contest_ai_script.s +++ b/asm/macros/contest_ai_script.s @@ -275,10 +275,18 @@ .4byte \addr .endm -@ 40 -@ 41 +@ whether the current move is a combo starter - .macro contest_42 addr + .macro check_combo_starter + .byte 0x40 + .endm + + .macro if_combo_starter addr + .byte 0x41 + .4byte \addr + .endm + + .macro if_not_combo_starter addr .byte 0x42 .4byte \addr .endm |