aboutsummaryrefslogtreecommitdiff
path: root/src/server/game
diff options
context:
space:
mode:
authorShauren <none@none>2010-11-14 00:21:57 +0100
committerShauren <none@none>2010-11-14 00:21:57 +0100
commit9ba52c474bc236406c8f8562c7db3f3316bcfabc (patch)
tree9bf6e096e6ac42147570b95c8186cf2d24cdea78 /src/server/game
parent61f07610fd205096357548ab8db1642bcb067238 (diff)
Scripts/Icecrown Citadel: Fixed Festergut's Pungent Blight getting interrupted
Scripts/Icecrown Citadel: Changed handling of Deathbringer Saurfang's Blood Power aura (its now always active, starts with 0 value) Scripts/Icecrown Citadel: Fixed Deathbringer Saurfang's achievement (I've Made a Mess) Scripts/Icecrown Citadel: Fixed Mark of the Fallen Champion aura removal (Deathbringer Saurfang) --HG-- branch : trunk
Diffstat (limited to 'src/server/game')
-rwxr-xr-xsrc/server/game/Spells/SpellMgr.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/server/game/Spells/SpellMgr.cpp b/src/server/game/Spells/SpellMgr.cpp
index 484ee03f091..30f88d59072 100755
--- a/src/server/game/Spells/SpellMgr.cpp
+++ b/src/server/game/Spells/SpellMgr.cpp
@@ -3873,6 +3873,11 @@ void SpellMgr::LoadSpellCustomAttr()
spellInfo->EffectImplicitTargetA[0] = TARGET_DST_DB;
count++;
break;
+ // Deathbringer Saurfang achievement (must be cast on players, cannot do that with ENTRY target)
+ case 72928:
+ spellInfo->EffectImplicitTargetB[0] = TARGET_UNIT_AREA_ENEMY_SRC;
+ count++;
+ break;
case 63675: // Improved Devouring Plague
spellInfo->AttributesEx3 |= SPELL_ATTR_EX3_NO_DONE_BONUS;
count++;