fix(Scripts/ZulAman): Increase Jan'alai teleport exclusion zone (#21115)

This commit is contained in:
Andrew
2025-01-08 00:45:31 -03:00
committed by GitHub
parent cbfeb3edbe
commit 373c442a1d

View File

@@ -464,7 +464,7 @@ class spell_summon_all_players_dummy: public SpellScript
Position pos = GetCaster()->GetPosition();
targets.remove_if([&, pos](WorldObject* target) -> bool
{
return target->IsWithinBox(pos, 18.0f, 18.0f, 18.0f);
return target->IsWithinBox(pos, 22.0f, 28.0f, 28.0f);
});
}