diff options
Diffstat (limited to 'src/game/Unit.cpp')
-rw-r--r-- | src/game/Unit.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/game/Unit.cpp b/src/game/Unit.cpp index 23cde7b2fc6..b4878cbac46 100644 --- a/src/game/Unit.cpp +++ b/src/game/Unit.cpp @@ -806,7 +806,7 @@ uint32 Unit::DealDamage(Unit *pVictim, uint32 damage, CleanDamage const* cleanDa ((Creature*)pVictim)->SetLootRecipient(this); if(GetCharmerOrOwnerPlayerOrPlayerItself()) - ((Creature*)pVictim)->AddDamageByPlayers(health < damage ? health : damage); + ((Creature*)pVictim)->LowerPlayerDamageReq(health < damage ? health : damage); } if (health <= damage) |