From 4c515b4b08e13c270f99c5b8b1978849516b866b Mon Sep 17 00:00:00 2001 From: aozhiwei Date: Wed, 21 Dec 2022 10:55:05 +0800 Subject: [PATCH] 1 --- server/gameserver/human.cc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/server/gameserver/human.cc b/server/gameserver/human.cc index 05540f3a..02113707 100644 --- a/server/gameserver/human.cc +++ b/server/gameserver/human.cc @@ -3472,7 +3472,8 @@ void Human::OnLand() } Position new_pos; new_pos.x = point.x * 10; - new_pos.y = point.z * 10; + new_pos.y = point.y; + new_pos.z = point.z * 10; Global::Instance()->verify_set_pos = 1; SetPos(new_pos); Global::Instance()->verify_set_pos = 0;