diff options
author | Rangi <remy.oukaour+rangi42@gmail.com> | 2019-04-21 17:44:26 -0400 |
---|---|---|
committer | Rangi <remy.oukaour+rangi42@gmail.com> | 2019-04-21 17:44:26 -0400 |
commit | 78f3a63dd9b89e36c6ebe859afeb1e1ebe737b86 (patch) | |
tree | 4651c63b6b3a77c464ca93c874a3ff419d80b52b | |
parent | f7769aac4cfaae751b085cc37994a28d70ccc3a2 (diff) |
object_const_def
-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 |