diff options
Diffstat (limited to 'macros/scripts/maps.asm')
-rw-r--r-- | macros/scripts/maps.asm | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/macros/scripts/maps.asm b/macros/scripts/maps.asm index f7452080e..48c8f0104 100644 --- a/macros/scripts/maps.asm +++ b/macros/scripts/maps.asm @@ -76,15 +76,15 @@ ENDM trainer: MACRO -;\1: flag: an EVENT_BEAT_* constant -;\2: trainer group -;\3: trainer id +;\1: trainer group +;\2: trainer id +;\3: flag: an EVENT_BEAT_* constant ;\4: seen text ;\5: win text ;\6: loss text ;\7: after-battle text - dw \1 - db \2, \3 + dw \3 + db \1, \2 dw \4, \5, \6, \7 ENDM |