From 5add0d660b3934d91fe09fdfd6cc283845003a4f Mon Sep 17 00:00:00 2001 From: EmeraldLockdown <86802223+EmeraldLoc@users.noreply.github.com> Date: Thu, 16 Apr 2026 18:27:55 -0500 Subject: [PATCH] Make it to red coins --- src/game/behaviors/recovery_heart.inc.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/game/behaviors/recovery_heart.inc.c b/src/game/behaviors/recovery_heart.inc.c index d9a862033..5f64baa2d 100644 --- a/src/game/behaviors/recovery_heart.inc.c +++ b/src/game/behaviors/recovery_heart.inc.c @@ -27,7 +27,7 @@ void bhv_recovery_heart_loop(void) { o->oSpinningHeartPlayedSound += 1; } - struct MarioState* marioState = nearest_interacting_mario_state_to_object(o); + struct MarioState *marioState = nearest_interacting_mario_state_to_object(o); if (marioState) { o->oAngleVelYaw = (s32)(200.0f * marioState->forwardVel) + 1000; } @@ -41,8 +41,7 @@ void bhv_recovery_heart_loop(void) { } if ((o->oSpinningHeartTotalSpin += o->oAngleVelYaw) >= 0x10000) { - - struct MarioState* nearestInteractingState = nearest_interacting_mario_state_to_object(o); + struct MarioState *nearestInteractingState = nearest_interacting_mario_state_to_object(o); for (s32 i = 0; i < MAX_PLAYERS; i++) { if (!gMarioStates[i].visibleToEnemies) { continue; } if (!is_player_active(&gMarioStates[i])) { continue; }