From f2a3226b471289fbd295063b17b802c56cca0796 Mon Sep 17 00:00:00 2001 From: Bivurnum <147376167+Bivurnum@users.noreply.github.com> Date: Thu, 29 May 2025 04:05:23 -0500 Subject: [PATCH] Fixed follower NPC changing to surf sprite when choosing not to surface from dive (#7010) --- data/scripts/field_move_scripts.inc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/data/scripts/field_move_scripts.inc b/data/scripts/field_move_scripts.inc index 4cd069c7ee..1845e10297 100644 --- a/data/scripts/field_move_scripts.inc +++ b/data/scripts/field_move_scripts.inc @@ -354,7 +354,7 @@ EventScript_UseDiveUnderwater:: setfieldeffectargument 0, VAR_RESULT setfieldeffectargument 1, 1 msgbox Text_WantToSurface, MSGBOX_YESNO - goto_if_eq VAR_RESULT, NO, EventScript_EndSurface + goto_if_eq VAR_RESULT, NO, EventScript_NoSurface msgbox Text_MonUsedDive, MSGBOX_DEFAULT hidefollowernpc dofieldeffect FLDEFF_USE_DIVE @@ -369,6 +369,7 @@ EventScript_CantSurface:: EventScript_EndSurface:: callnative SetFollowerNPCSurfSpriteAfterDive +EventScript_NoSurface:: releaseall end