mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-22 10:05:32 +01:00
From beginning of Sartharion encounter if Tenebron, Shadron and/or Vesperon are alive the Spell Power of Tenebron, Shadron and/or Vesperon must be casted on all players, this occurs like retail.
This commit is contained in:
@@ -427,6 +427,7 @@ public:
|
||||
bCanUseWill = true;
|
||||
if (!pFetchTene->isInCombat())
|
||||
{
|
||||
DoCast(me, SPELL_POWER_OF_TENEBRON);
|
||||
AddDrakeLootMode();
|
||||
++drakeCount;
|
||||
}
|
||||
@@ -441,6 +442,7 @@ public:
|
||||
bCanUseWill = true;
|
||||
if (!pFetchShad->isInCombat())
|
||||
{
|
||||
DoCast(me, SPELL_POWER_OF_SHADRON);
|
||||
AddDrakeLootMode();
|
||||
++drakeCount;
|
||||
}
|
||||
@@ -455,6 +457,7 @@ public:
|
||||
bCanUseWill = true;
|
||||
if (!pFetchVesp->isInCombat())
|
||||
{
|
||||
DoCast(me, SPELL_POWER_OF_VESPERON);
|
||||
AddDrakeLootMode();
|
||||
++drakeCount;
|
||||
}
|
||||
@@ -1017,7 +1020,6 @@ public:
|
||||
{
|
||||
DoScriptText(SAY_TENEBRON_AGGRO, me);
|
||||
DoZoneInCombat();
|
||||
DoCast(me, SPELL_POWER_OF_TENEBRON);
|
||||
}
|
||||
|
||||
void KilledUnit(Unit* /*victim*/)
|
||||
@@ -1113,7 +1115,6 @@ public:
|
||||
{
|
||||
DoScriptText(SAY_SHADRON_AGGRO, me);
|
||||
DoZoneInCombat();
|
||||
DoCast(me, SPELL_POWER_OF_SHADRON);
|
||||
}
|
||||
|
||||
void KilledUnit(Unit* /*victim*/)
|
||||
@@ -1212,7 +1213,6 @@ public:
|
||||
{
|
||||
DoScriptText(SAY_VESPERON_AGGRO, me);
|
||||
DoZoneInCombat();
|
||||
DoCast(me, SPELL_POWER_OF_VESPERON);
|
||||
}
|
||||
|
||||
void KilledUnit(Unit* /*victim*/)
|
||||
|
||||
Reference in New Issue
Block a user