mirror of
https://github.com/mod-playerbots/azerothcore-wotlk.git
synced 2026-01-28 08:06:23 +00:00
chore(Core/Misc): Some cleanup (#19970)
* remove weird blanks * update if * ) ) to )) * missed some ) ) * now switch * .
This commit is contained in:
@@ -87,7 +87,7 @@ struct boss_omor_the_unscarred : public BossAI
|
||||
|
||||
void KilledUnit(Unit*) override
|
||||
{
|
||||
if(!_hasSpoken)
|
||||
if (!_hasSpoken)
|
||||
{
|
||||
_hasSpoken = true;
|
||||
Talk(SAY_KILL);
|
||||
|
||||
@@ -215,7 +215,7 @@ struct boss_magtheridon : public BossAI
|
||||
});
|
||||
}
|
||||
}
|
||||
else if (action == ACTION_BANISH_SELF )
|
||||
else if (action == ACTION_BANISH_SELF)
|
||||
{
|
||||
Talk(SAY_BANISH);
|
||||
me->CastSpell(me, SPELL_SHADOW_CAGE_STUN, true);
|
||||
|
||||
@@ -271,7 +271,7 @@ struct boss_grand_warlock_nethekurse : public BossAI
|
||||
{
|
||||
// check if door is openened
|
||||
//this should only happen before the intro, if the door is picked by someone
|
||||
if(nethekursedoor->GetGoState() == 0)
|
||||
if (nethekursedoor->GetGoState() == 0)
|
||||
{
|
||||
DoAction(ACTION_START_INTRO);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user