diff options
| author | Machiavelli <machiavelli.trinity@gmail.com> | 2011-08-11 16:35:56 +0200 |
|---|---|---|
| committer | Machiavelli <machiavelli.trinity@gmail.com> | 2011-08-13 21:46:25 +0200 |
| commit | 65a29d13154ce965b63331d9cbf67f4294092b48 (patch) | |
| tree | 3f2efa1938f7e9f4697daf9621b251b4ef44bfe0 | |
| parent | 54cf7f28d257638f1fd63b9afc2241d3eef91825 (diff) | |
Scripts/Spells: Fix a typo in spell_hun_masters_call
| -rw-r--r-- | src/server/scripts/Spells/spell_hunter.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/scripts/Spells/spell_hunter.cpp b/src/server/scripts/Spells/spell_hunter.cpp index 2c134f6a0b8..79f92368ff9 100644 --- a/src/server/scripts/Spells/spell_hunter.cpp +++ b/src/server/scripts/Spells/spell_hunter.cpp @@ -231,7 +231,7 @@ class spell_hun_masters_call : public SpellScriptLoader if (Unit* target = GetHitUnit()) { // Cannot be processed while pet is dead - TriggerCastFlags castMask = TriggerCastFlags(TRIGGERED_FULL_MASK | ~TRIGGERED_IGNORE_CASTER_AURASTATE); + TriggerCastFlags castMask = TriggerCastFlags(TRIGGERED_FULL_MASK & ~TRIGGERED_IGNORE_CASTER_AURASTATE); target->CastSpell(target, GetEffectValue(), castMask); target->CastSpell(target, HUNTER_SPELL_MASTERS_CALL_TRIGGERED, castMask); // there is a possibility that this effect should access effect 0 (dummy) target, but i dubt that |
