Fix hard mode bug

Co-Authored-By: Mr.Needlemouse <103795210+64bitmouse@users.noreply.github.com>
This commit is contained in:
Agent X 2024-12-27 22:25:17 -05:00
parent abc79cab55
commit 8a245689aa

View file

@ -32,8 +32,8 @@ function mario_update_hardmode(m)
end
if m.hurtCounter > 0 or sBurnActions[m.action] then
m.hurtCounter = 64 -- Damage Check. Hard Mode is a OHKO mode
m.healCounter = 0 -- Prevents you from healing from a coin or any health regen object via landing on one while dying
m.health = 0
m.healCounter = 0 -- prevents you from healing from a coin or any health regen object via landing on one while dying
end
end