diff options
author | Shauren <shauren.trinity@gmail.com> | 2011-03-08 16:42:00 +0100 |
---|---|---|
committer | Shauren <shauren.trinity@gmail.com> | 2011-03-08 16:42:00 +0100 |
commit | e5347a3bdadc5468916a11f9da5c9561f955f79a (patch) | |
tree | a01fd9010a6eb3e40f1d89103738a3cd5fbe96de /src/server/game/Spells/SpellEffects.cpp | |
parent | 00f2ded757f2fe47ca40d3c5269008e6fa39aa21 (diff) |
Core: Fixed warnings:
C4100: 'variable' : unreferenced formal parameter
C4701: potentially uninitialized local variable
C4389: '!=' : signed/unsigned mismatch
C4245: 'argument' : conversion from 'X' to 'Y', signed/unsigned mismatch
Diffstat (limited to 'src/server/game/Spells/SpellEffects.cpp')
-rwxr-xr-x | src/server/game/Spells/SpellEffects.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/game/Spells/SpellEffects.cpp b/src/server/game/Spells/SpellEffects.cpp index 7b26a4dccfd..10c7d41caca 100755 --- a/src/server/game/Spells/SpellEffects.cpp +++ b/src/server/game/Spells/SpellEffects.cpp @@ -6268,7 +6268,7 @@ void Spell::EffectSummonDeadPet(SpellEffIndex /*effIndex*/) pet->SetUInt32Value(UNIT_DYNAMIC_FLAGS, 0); pet->RemoveFlag (UNIT_FIELD_FLAGS, UNIT_FLAG_SKINNABLE); pet->setDeathState(ALIVE); - pet->ClearUnitState(UNIT_STAT_ALL_STATE); + pet->ClearUnitState(uint32(UNIT_STAT_ALL_STATE)); pet->SetHealth(pet->CountPctFromMaxHealth(damage)); //pet->AIM_Initialize(); |