From de9bb54423e439191a08bf2ba38a2c562820d8f9 Mon Sep 17 00:00:00 2001 From: Emerald Lockdown <86802223+EmeraldLoc@users.noreply.github.com> Date: Mon, 12 Sep 2022 22:01:13 -0500 Subject: [PATCH] Remove heal on warp (#181) * Patch heal on warp * Remove entirely --- src/game/level_update.c | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/game/level_update.c b/src/game/level_update.c index 33dc1f94..27b0f510 100644 --- a/src/game/level_update.c +++ b/src/game/level_update.c @@ -417,11 +417,6 @@ void init_mario_after_warp(void) { if (sWarpDest.type == WARP_TYPE_CHANGE_LEVEL || sWarpDest.type == WARP_TYPE_CHANGE_AREA) { gPlayerSpawnInfos[i].areaIndex = sWarpDest.areaIdx; - // reset health - gMarioStates[i].health = 0x880; - gMarioStates[i].healCounter = 0; - gMarioStates[i].hurtCounter = 0; - if (i == 0) { load_mario_area(); } }