Skip to content

Commit

Permalink
Add Seashore House fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Pseurae committed Oct 20, 2024
1 parent 2b9f5f0 commit 7c2c84c
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 1 deletion.
5 changes: 4 additions & 1 deletion config.asm
Original file line number Diff line number Diff line change
Expand Up @@ -152,4 +152,7 @@
.definelabel FIX_FEMALE_MC_OW_SPRITES, 1

; Change Birch chase script with the default Ruby one.
.definelabel REPLACE_BIRCH_CHASE_SCRIPT, 1
.definelabel REPLACE_BIRCH_CHASE_SCRIPT, 1

; Show Chef sprite in Seashore House.
.definelabel FIX_SEASHORE_HOUSE_CHEF, 1
1 change: 1 addition & 0 deletions main.asm
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@
.include "scripts/bugfixes/meteor_portrait.asm"
.include "scripts/bugfixes/necropolis_respawn.asm"
.include "scripts/bugfixes/roclobster.asm"
.include "scripts/bugfixes/seashore_house_chef.asm"
.include "scripts/bugfixes/senex_lilycove.asm"
.include "scripts/bugfixes/shop_frame_tiles.asm"
.include "scripts/bugfixes/ss_cangrejo.asm"
Expand Down
13 changes: 13 additions & 0 deletions scripts/bugfixes/seashore_house_chef.asm
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
.if FIX_SEASHORE_HOUSE_CHEF

; Set the object flag to the trainer flag
.org 0x86B6A74
.halfword 0x50A

.org 0x8811A44 + 5
.byte 0x54

.org 0x8811A4C + 5
.byte 0x54

.endif

0 comments on commit 7c2c84c

Please sign in to comment.