From 8661c65ab835973ccf1bcb99f461e38a45933a8e 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 33dc1f944..27b0f5109 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(); } }