diff options
author | megamage <none@none> | 2009-03-16 15:50:10 -0600 |
---|---|---|
committer | megamage <none@none> | 2009-03-16 15:50:10 -0600 |
commit | 8a1d6df8c08d8fd1757fdcb7277988eaf690ffa8 (patch) | |
tree | 99a04f534df9e29285965f854e80e3439d4dee09 /src | |
parent | 6a3da0932f67327933e7a6d8b7f5605a11aa6063 (diff) |
[7471] Ignore player target case for spell 29528 instead error reports in log. Author: VladimirMangos
--HG--
branch : trunk
Diffstat (limited to 'src')
-rw-r--r-- | src/game/SpellAuras.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/game/SpellAuras.cpp b/src/game/SpellAuras.cpp index c43319b7e72..6b1516d0848 100644 --- a/src/game/SpellAuras.cpp +++ b/src/game/SpellAuras.cpp @@ -1390,6 +1390,11 @@ void Aura::TriggerSpell() // case 28522: break; // // Silithyst // case 29519: break; + // Inoculate Nestlewood Owlkin + case 29528: + if(target->GetTypeId()!=TYPEID_UNIT)// prevent error reports in case ignored player target + return; + break; // // Overload // case 29768: break; // // Return Fire |