mirror of
https://github.com/coop-deluxe/sm64coopdx.git
synced 2024-11-25 05:25:14 +00:00
Slight tweak to arena's prevent water heal
This commit is contained in:
parent
aaaf59e1e4
commit
0a1334c3a9
1 changed files with 1 additions and 1 deletions
|
@ -386,7 +386,7 @@ function mario_local_update(m)
|
|||
|
||||
-- prevent water heal
|
||||
if m.health >= 0x100 then
|
||||
if ((m.healCounter or m.hurtCounter) == 0) then
|
||||
if m.healthCounter == 0 and m.hurtCounter == 0 then
|
||||
if ((m.action & ACT_FLAG_SWIMMING ~= 0) and (m.action & ACT_FLAG_INTANGIBLE == 0)) then
|
||||
if ((m.pos.y >= (m.waterLevel - 140)) and not (m.area.terrainType & TERRAIN_SNOW ~= 0)) then
|
||||
m.health = m.health - 0x1A
|
||||
|
|
Loading…
Reference in a new issue