From 5a63d5754f5c7364e06eded6d5021db56ba65bf3 Mon Sep 17 00:00:00 2001 From: PyroJay4 <55606826+PyroJay4@users.noreply.github.com> Date: Mon, 6 Sep 2021 12:33:54 -0400 Subject: [PATCH] Update koopa_shell_underwater.inc.c pretty sure this fixes a bug where the particles dont spawn correctly --- src/game/behaviors/koopa_shell_underwater.inc.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/game/behaviors/koopa_shell_underwater.inc.c b/src/game/behaviors/koopa_shell_underwater.inc.c index 7d670ab5..4be854c3 100644 --- a/src/game/behaviors/koopa_shell_underwater.inc.c +++ b/src/game/behaviors/koopa_shell_underwater.inc.c @@ -26,13 +26,13 @@ void bhv_koopa_shell_underwater_loop(void) { break; case HELD_THROWN: case HELD_DROPPED: - obj_mark_for_deletion(o); spawn_mist_particles(); + obj_mark_for_deletion(o); break; } if (o->oInteractStatus & INT_STATUS_STOP_RIDING) { - obj_mark_for_deletion(o); spawn_mist_particles(); + obj_mark_for_deletion(o); } o->oInteractStatus = 0; }