diff options
author | yenatch <yenatch@gmail.com> | 2017-12-28 22:17:13 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-12-28 22:17:13 -0500 |
commit | b97a1acf3d676ca1c776e37ff4cfa48164ffc92b (patch) | |
tree | 59b5db70690a9f9041e4964adae1722b4d178a1b /maps/Route23.asm | |
parent | 82a05a1752b476caab8951fe03f539dcc1a63669 (diff) | |
parent | b9a68fec2589eb6969be63e6ed1eb3fca312c307 (diff) |
Merge pull request #445 from roukaour/master
Rename Pokémon animation files; consistent (x, y) coords; document design flaws
Diffstat (limited to 'maps/Route23.asm')
-rw-r--r-- | maps/Route23.asm | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/maps/Route23.asm b/maps/Route23.asm index 1c0e2aa8e..87ba72d9c 100644 --- a/maps/Route23.asm +++ b/maps/Route23.asm @@ -28,17 +28,17 @@ Route23_MapEventHeader: .Warps: db 4 - warp_def $5, $9, 1, INDIGO_PLATEAU_POKECENTER_1F - warp_def $5, $a, 2, INDIGO_PLATEAU_POKECENTER_1F - warp_def $d, $9, 10, VICTORY_ROAD - warp_def $d, $a, 10, VICTORY_ROAD + warp_def 9, 5, 1, INDIGO_PLATEAU_POKECENTER_1F + warp_def 10, 5, 2, INDIGO_PLATEAU_POKECENTER_1F + warp_def 9, 13, 10, VICTORY_ROAD + warp_def 10, 13, 10, VICTORY_ROAD .CoordEvents: db 0 .BGEvents: db 1 - bg_event 7, 11, BGEVENT_READ, IndigoPlateauSign + bg_event 11, 7, BGEVENT_READ, IndigoPlateauSign .ObjectEvents: db 0 |