diff options
author | Remy Oukaour <remy.oukaour@gmail.com> | 2018-01-29 02:31:32 -0500 |
---|---|---|
committer | Remy Oukaour <remy.oukaour@gmail.com> | 2018-01-29 02:31:32 -0500 |
commit | d271d6917549074e721f3e5064b77e1ad1dbe44a (patch) | |
tree | cee0f1b9a44aa7394dbf36ee3ad3654dde08df06 /data/mapObjects/diglettscave.asm | |
parent | c84667c4df36918071bb7487c456d7adafb921ca (diff) |
Add warp, sign, and warp_to macros for data/mapObjects definitions
Diffstat (limited to 'data/mapObjects/diglettscave.asm')
-rwxr-xr-x | data/mapObjects/diglettscave.asm | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/data/mapObjects/diglettscave.asm b/data/mapObjects/diglettscave.asm index cdcffce0..160a9f43 100755 --- a/data/mapObjects/diglettscave.asm +++ b/data/mapObjects/diglettscave.asm @@ -2,13 +2,13 @@ DiglettsCaveObject: db $19 ; border block db $2 ; warps - db $5, $5, $2, DIGLETTS_CAVE_EXIT - db $1f, $25, $2, DIGLETTS_CAVE_ENTRANCE + warp $5, $5, $2, DIGLETTS_CAVE_EXIT + warp $25, $1f, $2, DIGLETTS_CAVE_ENTRANCE db $0 ; signs db $0 ; objects ; warp-to - EVENT_DISP DIGLETTS_CAVE_WIDTH, $5, $5 ; DIGLETTS_CAVE_EXIT - EVENT_DISP DIGLETTS_CAVE_WIDTH, $1f, $25 ; DIGLETTS_CAVE_ENTRANCE + warp_to $5, $5, DIGLETTS_CAVE_WIDTH ; DIGLETTS_CAVE_EXIT + warp_to $25, $1f, DIGLETTS_CAVE_WIDTH ; DIGLETTS_CAVE_ENTRANCE |