diff options
author | megamage <none@none> | 2009-03-21 18:05:43 -0600 |
---|---|---|
committer | megamage <none@none> | 2009-03-21 18:05:43 -0600 |
commit | ee332629b6af6b12079497f5d635e15fedee87b2 (patch) | |
tree | 15a094036518df37c05105643a6203a63997a395 /src/game/SpellMgr.cpp | |
parent | f8143543968706f85f9886021ca1e258fba4df24 (diff) |
*Do not allow toggle unautocastable spells for pet.
--HG--
branch : trunk
Diffstat (limited to 'src/game/SpellMgr.cpp')
-rw-r--r-- | src/game/SpellMgr.cpp | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/game/SpellMgr.cpp b/src/game/SpellMgr.cpp index 8b3f8345661..be236dbc83b 100644 --- a/src/game/SpellMgr.cpp +++ b/src/game/SpellMgr.cpp @@ -263,6 +263,18 @@ bool IsPassiveSpell(uint32 spellId) return (spellInfo->Attributes & SPELL_ATTR_PASSIVE) != 0; } +bool IsAutocastableSpell(uint32 spellId) +{ + SpellEntry const *spellInfo = sSpellStore.LookupEntry(spellId); + if(!spellInfo) + return false; + if(spellInfo->Attributes & SPELL_ATTR_PASSIVE) + return false; + if(spellInfo->AttributesEx & SPELL_ATTR_EX_UNAUTOCASTABLE_BY_PET) + return false; + return true; +} + /*bool IsNoStackAuraDueToAura(uint32 spellId_1, uint32 effIndex_1, uint32 spellId_2, uint32 effIndex_2) { SpellEntry const *spellInfo_1 = sSpellStore.LookupEntry(spellId_1); |