diff options
-rw-r--r-- | Add-a-new-Mart.md | 2 | ||||
-rw-r--r-- | Add-a-new-map-and-landmark.md | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/Add-a-new-Mart.md b/Add-a-new-Mart.md index b9492b8..92c32dc 100644 --- a/Add-a-new-Mart.md +++ b/Add-a-new-Mart.md @@ -93,7 +93,7 @@ The core idea here is to use the `pokemart` script command, passing it a mart ty Edit [maps/GoldenrodDeptStore3F.asm](../blob/master/maps/GoldenrodDeptStore3F.asm): ```diff - const_def 2 ; object constants + object_const_def ; object_event constants const GOLDENRODDEPTSTORE3F_CLERK + const GOLDENRODDEPTSTORE3F_CLERK2 const GOLDENRODDEPTSTORE3F_SUPER_NERD diff --git a/Add-a-new-map-and-landmark.md b/Add-a-new-map-and-landmark.md index 6a87890..d6c5fe0 100644 --- a/Add-a-new-map-and-landmark.md +++ b/Add-a-new-map-and-landmark.md @@ -382,7 +382,7 @@ Note the use of "¯" in some landmark names. That character gets treated as a li Create **maps/GlobalTerminalOutside.asm**: ```diff -+ const_def 2 ; object constants ++ object_const_def ; object_event constants + const GLOBALTERMINALOUTSIDE_ROCKET + +GlobalTerminalOutside_MapScripts: @@ -407,7 +407,7 @@ Create **maps/GlobalTerminalOutside.asm**: And create **maps/GlobalTerminal1F.asm**: ```diff -+ const_def 2 ; object constants ++ object_const_def ; object_event constants + +GlobalTerminal1F_MapScripts: + db 0 ; scene scripts |