mirror of
https://github.com/mod-playerbots/azerothcore-wotlk.git
synced 2026-01-17 02:50:29 +00:00
chore(Core): Correct typo of Suppress. (#20229)
* Init. * Adjust spacing.
This commit is contained in:
@@ -70,17 +70,17 @@ struct boss_murmur : public BossAI
|
||||
_Reset();
|
||||
me->SetHealth(me->CountPctFromMaxHealth(40));
|
||||
me->ResetPlayerDamageReq();
|
||||
CastSupressionOOC();
|
||||
CastSuppressionOOC();
|
||||
}
|
||||
|
||||
void CastSupressionOOC()
|
||||
void CastSuppressionOOC()
|
||||
{
|
||||
me->m_Events.CancelEventGroup(GROUP_OOC_CAST);
|
||||
me->m_Events.AddEventAtOffset([this] {
|
||||
if (me->FindNearestCreature(NPC_CABAL_SPELLBINDER, 35.0f))
|
||||
{
|
||||
me->CastCustomSpell(SPELL_SUPPRESSION, SPELLVALUE_MAX_TARGETS, 5, (Unit*)nullptr, false);
|
||||
CastSupressionOOC();
|
||||
CastSuppressionOOC();
|
||||
}
|
||||
}, 3600ms, 10900ms, GROUP_OOC_CAST);
|
||||
}
|
||||
|
||||
@@ -936,7 +936,7 @@ class spell_dru_starfall_dummy : public SpellScript
|
||||
return;
|
||||
}
|
||||
|
||||
// Any effect which causes you to lose control of your character will supress the starfall effect.
|
||||
// Any effect which causes you to lose control of your character will suppress the starfall effect.
|
||||
if (caster->HasUnitState(UNIT_STATE_CONTROLLED))
|
||||
return;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user