diff --git a/config.asm b/config.asm index 6075668..4ad2f67 100644 --- a/config.asm +++ b/config.asm @@ -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 \ No newline at end of file +.definelabel REPLACE_BIRCH_CHASE_SCRIPT, 1 + +; Show Chef sprite in Seashore House. +.definelabel FIX_SEASHORE_HOUSE_CHEF, 1 \ No newline at end of file diff --git a/main.asm b/main.asm index 0932545..9a721a4 100644 --- a/main.asm +++ b/main.asm @@ -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" diff --git a/scripts/bugfixes/seashore_house_chef.asm b/scripts/bugfixes/seashore_house_chef.asm new file mode 100644 index 0000000..72eeb3c --- /dev/null +++ b/scripts/bugfixes/seashore_house_chef.asm @@ -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 \ No newline at end of file