From 6a099714d3694b630c4a3b8a7b4fc47de10b75cd Mon Sep 17 00:00:00 2001 From: Agent X <44549182+AgentXLP@users.noreply.github.com> Date: Sat, 9 May 2026 14:21:24 -0400 Subject: [PATCH] Set mario health to 1 instead of 8 with anti softlock measure --- src/game/level_update.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/game/level_update.c b/src/game/level_update.c index 4f7da4280..eca006227 100644 --- a/src/game/level_update.c +++ b/src/game/level_update.c @@ -556,7 +556,7 @@ void init_mario_after_warp(void) { } if (gMarioState && gMarioState->health <= 0x110) { - gMarioState->health = 0x880; + gMarioState->health = 0x180; } if (gMarioState) {