mirror of
https://github.com/mod-playerbots/azerothcore-wotlk.git
synced 2026-01-17 02:50:29 +00:00
fix(Script/Sunwell): M'uru height check (#21942)
This commit is contained in:
@@ -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();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user