diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/game/Unit.cpp | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/src/game/Unit.cpp b/src/game/Unit.cpp index c6a1f17df35..91ad509abc2 100644 --- a/src/game/Unit.cpp +++ b/src/game/Unit.cpp @@ -10740,9 +10740,14 @@ void Unit::SetLevel(uint32 lvl) void Unit::SetHealth(uint32 val) { - uint32 maxHealth = GetMaxHealth(); - if(maxHealth < val) - val = maxHealth; + if(!isAlive()) + val = 0; + else + { + uint32 maxHealth = GetMaxHealth(); + if(maxHealth < val) + val = maxHealth; + } SetUInt32Value(UNIT_FIELD_HEALTH, val); |