diff options
author | yenatch <yenatch@gmail.com> | 2015-11-03 07:56:05 -0500 |
---|---|---|
committer | yenatch <yenatch@gmail.com> | 2015-11-03 07:56:05 -0500 |
commit | 1c1fe276ca59726bb0008c60006c6b48cd093573 (patch) | |
tree | 817fb9c92dd798e89a891c3924bda3df955344e0 /maps/FastShip1F.asm | |
parent | 25c126c69beebfdf26d0de286e25c65f6f3db16e (diff) | |
parent | 2faa4a0f70edd91bde908139b3fd5b6b5aebf017 (diff) |
Merge pull request #324 from PikalaxALT/master
Movement and map objects
Diffstat (limited to 'maps/FastShip1F.asm')
-rw-r--r-- | maps/FastShip1F.asm | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/maps/FastShip1F.asm b/maps/FastShip1F.asm index 5e3f3a0fb..832ab3d1d 100644 --- a/maps/FastShip1F.asm +++ b/maps/FastShip1F.asm @@ -3,9 +3,9 @@ FastShip1F_MapScriptHeader: db 3 ; triggers - dw .Trigger1, $0000 - dw .Trigger2, $0000 - dw .Trigger3, $0000 + dw .Trigger1, 0 + dw .Trigger2, 0 + dw .Trigger3, 0 .MapCallbacks: db 0 @@ -310,7 +310,7 @@ FastShip1F_MapEventHeader: .PersonEvents: db 4 - person_event SPRITE_SAILOR, 2, 25, $6, 0, 0, -1, -1, 0, 0, 0, SailorScript_0x75160, -1 - person_event SPRITE_SAILOR, 7, 14, $9, 0, 0, -1, -1, 0, 0, 0, SailorScript_0x751d0, -1 - person_event SPRITE_SAILOR, 17, 22, $5, 0, 2, -1, -1, 0, 0, 0, SailorScript_0x751e4, -1 - person_event SPRITE_GENTLEMAN, 6, 19, $9, 0, 0, -1, -1, 0, 0, 0, ObjectEvent, EVENT_FAST_SHIP_1F_GENTLEMAN + person_event SPRITE_SAILOR, 2, 25, SPRITEMOVEDATA_STANDING_DOWN, 0, 0, -1, -1, 0, 0, 0, SailorScript_0x75160, -1 + person_event SPRITE_SAILOR, 7, 14, SPRITEMOVEDATA_STANDING_RIGHT, 0, 0, -1, -1, 0, 0, 0, SailorScript_0x751d0, -1 + person_event SPRITE_SAILOR, 17, 22, SPRITEMOVEDATA_WALK_LEFT_RIGHT, 0, 2, -1, -1, 0, 0, 0, SailorScript_0x751e4, -1 + person_event SPRITE_GENTLEMAN, 6, 19, SPRITEMOVEDATA_STANDING_RIGHT, 0, 0, -1, -1, 0, 0, 0, ObjectEvent, EVENT_FAST_SHIP_1F_GENTLEMAN |