From 743d6cff90ce0f53ee13772b3614b0a0839a55c8 Mon Sep 17 00:00:00 2001 From: aozhiwei Date: Tue, 3 Jan 2023 15:43:26 +0800 Subject: [PATCH] 1 --- server/gameserver/creature.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/gameserver/creature.cc b/server/gameserver/creature.cc index 17879d68..6b85bbe5 100644 --- a/server/gameserver/creature.cc +++ b/server/gameserver/creature.cc @@ -2696,7 +2696,7 @@ void Creature::OnLand() glm::vec3 center = GetPos().ToGlmVec3(); room->map_instance->Scale(center); glm::vec3 point; - bool ok = room->map_instance->FindNearestPoint(center, 2, point); + bool ok = room->map_instance->FindNearestPoint(center, 200, point); if (!ok) { abort(); }