From 3424f7a67cc9382691b4391695cc45b41e2d0961 Mon Sep 17 00:00:00 2001 From: EmeraldLockdown <86802223+EmeraldLoc@users.noreply.github.com> Date: Sat, 16 May 2026 22:17:35 -0500 Subject: [PATCH] Probably didn't fix bowser platform and made it worse but need to test --- src/game/behaviors/bowser.inc.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/game/behaviors/bowser.inc.c b/src/game/behaviors/bowser.inc.c index ee61254a7..eca2a727f 100644 --- a/src/game/behaviors/bowser.inc.c +++ b/src/game/behaviors/bowser.inc.c @@ -1506,8 +1506,7 @@ void bhv_bowser_override_ownership(u8 *shouldOverride, u8 *shouldOwn) { static u8 bhv_bowser_ignore_if_true(void) { if (bowserIsDying) { return TRUE; } - if (o->oAction == BOWSER_ACT_TILT_LAVA_PLATFORM) { return TRUE; } // let the platform get to a stable state - if (bowserIsCutscenePlayer && (o->oAction == BOWSER_ACT_WAIT || o->oAction == BOWSER_ACT_INTRO_WALK)) { return TRUE; } // Ignore updates till our cutscene is done. + if (bowserIsCutscenePlayer && (o->oAction == BOWSER_ACT_WAIT || o->oAction == BOWSER_ACT_INTRO_WALK)) { return TRUE; } // ignore updates till our cutscene is done. return FALSE; }