From 8f2878c37e6755a4ac41ea65568bbfabd77bbe83 Mon Sep 17 00:00:00 2001 From: Rangi Date: Tue, 23 Jan 2018 13:08:48 -0500 Subject: trainers put the class and id first: `trainer YOUNGSTER, JOEY1, ...` --- macros/scripts/maps.asm | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'macros/scripts') 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 -- cgit v1.2.3