fix(Script/Sunwell): M'uru height check (#21942)

This commit is contained in:
blinkysc
2025-04-16 11:24:29 -05:00
committed by GitHub
parent 35d593ecb5
commit 0fc912d867

View File

@@ -79,7 +79,7 @@ struct boss_muru : public BossAI
// Radius of room is ~38.5f this might need adjusting a bit
// Radius ~36.0 is right inside
// Radius 20.0 is outer circle
if (!me->IsInCombat() && who->IsPlayer() && me->IsWithinDistInMap(who, 25.0f))
if (!me->IsInCombat() && who->IsPlayer() && who->GetPositionZ() > 69.0f && me->IsWithinDistInMap(who, 25.0f))
{
me->SetInCombatWithZone();
}