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/UndergroundPath.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/UndergroundPath.asm')
-rw-r--r-- | maps/UndergroundPath.asm | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/maps/UndergroundPath.asm b/maps/UndergroundPath.asm index 6bf10e6fa..557a478be 100644 --- a/maps/UndergroundPath.asm +++ b/maps/UndergroundPath.asm @@ -19,16 +19,16 @@ UndergroundPath_MapEventHeader: .Warps: db 2 - warp_def $2, $3, 3, ROUTE_5_UNDERGROUND_PATH_ENTRANCE - warp_def $18, $3, 3, ROUTE_6_UNDERGROUND_PATH_ENTRANCE + warp_def 3, 2, 3, ROUTE_5_UNDERGROUND_PATH_ENTRANCE + warp_def 3, 24, 3, ROUTE_6_UNDERGROUND_PATH_ENTRANCE .CoordEvents: db 0 .BGEvents: db 2 - bg_event 9, 3, BGEVENT_ITEM, UndergroundPathHiddenFullRestore - bg_event 19, 1, BGEVENT_ITEM, UndergroundPathHiddenXSpecial + bg_event 3, 9, BGEVENT_ITEM, UndergroundPathHiddenFullRestore + bg_event 1, 19, BGEVENT_ITEM, UndergroundPathHiddenXSpecial .ObjectEvents: db 0 |