mirror of
https://github.com/araxiaonline/TrinityCore.git
synced 2026-06-21 07:22:02 -04:00
Core:
* add helping methods for manipulating unit's health and use it where applicable * fix some conversion warnings and cleanup code (formatting, CRLF, tabs to spaces) --HG-- branch : trunk
This commit is contained in:
@@ -54,7 +54,7 @@ public:
|
||||
int32 bp = 0;
|
||||
// Living ghoul as a target
|
||||
if (unitTarget->isAlive())
|
||||
bp = unitTarget->GetMaxHealth() * 0.25f;
|
||||
bp = int32(unitTarget->CountPctFromMaxHealth(25));
|
||||
// Some corpse
|
||||
else
|
||||
bp = GetEffectValue();
|
||||
|
||||
Reference in New Issue
Block a user