diff options
author | megamage <none@none> | 2009-01-04 16:45:32 -0600 |
---|---|---|
committer | megamage <none@none> | 2009-01-04 16:45:32 -0600 |
commit | 13cfff2327247c20ec4c0bcc51fa8cfb2594daff (patch) | |
tree | 5fc4dd45436c78a912218bdd7027e01eb8943e2d /src/game/Totem.cpp | |
parent | 2d319dd5b41c12f50250c006cca66f0316b90dc2 (diff) |
*Mangos [7023] Remove not used useCharges for IsImmunedToSpell/IsImmunedToDamage. By DiSlord.
--HG--
branch : trunk
Diffstat (limited to 'src/game/Totem.cpp')
-rw-r--r-- | src/game/Totem.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/game/Totem.cpp b/src/game/Totem.cpp index 2ac26f823d6..335c8e6df13 100644 --- a/src/game/Totem.cpp +++ b/src/game/Totem.cpp @@ -178,7 +178,7 @@ void Totem::SetTypeBySummonSpell(SpellEntry const * spellProto) m_type = TOTEM_STATUE; //Jewelery statue } -bool Totem::IsImmunedToSpell(SpellEntry const* spellInfo, bool useCharges) +bool Totem::IsImmunedToSpell(SpellEntry const* spellInfo) { /* for (int i=0;i<3;i++) { @@ -191,5 +191,5 @@ bool Totem::IsImmunedToSpell(SpellEntry const* spellInfo, bool useCharges) continue; } }*/ - return Creature::IsImmunedToSpell(spellInfo, useCharges); + return Creature::IsImmunedToSpell(spellInfo); } |