fix(Core/MC): adds should aggro with Golemagg (#9370)
This commit is contained in:
parent
8fd713ac52
commit
06a8175805
1 changed files with 14 additions and 1 deletions
|
|
@ -263,6 +263,20 @@ public:
|
|||
}
|
||||
break;
|
||||
}
|
||||
case IN_PROGRESS:
|
||||
{
|
||||
if (!_golemaggMinionsGUIDS.empty())
|
||||
{
|
||||
for (ObjectGuid const& minionGuid : _golemaggMinionsGUIDS)
|
||||
{
|
||||
if (Creature* minion = instance->GetCreature(minionGuid))
|
||||
{
|
||||
minion->AI()->DoZoneInCombat(nullptr, 150.0f);
|
||||
}
|
||||
}
|
||||
}
|
||||
break;
|
||||
}
|
||||
case DONE:
|
||||
{
|
||||
if (!_golemaggMinionsGUIDS.empty())
|
||||
|
|
@ -278,7 +292,6 @@ public:
|
|||
}
|
||||
break;
|
||||
}
|
||||
case IN_PROGRESS:
|
||||
default:
|
||||
break;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue