aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorRat <none@none>2009-11-18 12:49:25 +0100
committerRat <none@none>2009-11-18 12:49:25 +0100
commit4fc564d360f07fc9c26f37dddc5731bb4f6e9535 (patch)
tree190e6e16e4ba6a91003739ca2ea16540148afeda /src
parent559df766990d5a32128e6a0ce72e801b6554c0b1 (diff)
*fix Brutallus' Burn
-it's a self cast spell, don't cast it on the boss.. --HG-- branch : trunk
Diffstat (limited to 'src')
-rw-r--r--src/bindings/scripts/scripts/eastern_kingdoms/sunwell_plateau/boss_brutallus.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bindings/scripts/scripts/eastern_kingdoms/sunwell_plateau/boss_brutallus.cpp b/src/bindings/scripts/scripts/eastern_kingdoms/sunwell_plateau/boss_brutallus.cpp
index 12e19c1b215..61318693b90 100644
--- a/src/bindings/scripts/scripts/eastern_kingdoms/sunwell_plateau/boss_brutallus.cpp
+++ b/src/bindings/scripts/scripts/eastern_kingdoms/sunwell_plateau/boss_brutallus.cpp
@@ -319,7 +319,7 @@ struct TRINITY_DLL_DECL boss_brutallusAI : public ScriptedAI
for (std::list<Unit*>::iterator i = pTargets.begin(); i != pTargets.end(); ++i)
if(!(*i)->HasAura(SPELL_BURN))
{
- DoCast(*i, SPELL_BURN, true);
+ (*i)->CastSpell((*i), SPELL_BURN, true);
break;
}
BurnTimer = urand(60000,180000);