From 6173e1dd10745a4e0970a7c0de7b58f9502bd7ca Mon Sep 17 00:00:00 2001 From: Nikolay Korolev Date: Sun, 18 Oct 2020 22:52:49 +0300 Subject: fix --- src/control/PathFind.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/control/PathFind.cpp') diff --git a/src/control/PathFind.cpp b/src/control/PathFind.cpp index 14aead04..5d381f66 100644 --- a/src/control/PathFind.cpp +++ b/src/control/PathFind.cpp @@ -1412,7 +1412,7 @@ CPathFind::FindNodeCoorsForScript(int32 id) dir.Normalise(); if (dir.x < 0) dir = -dir; - return m_pathNodes[id].GetPosition() + CVector(-dir.x, dir.y, 0.0f) * (LANE_WIDTH / 2 + m_pathNodes[id].GetDividerWidth()); + return m_pathNodes[id].GetPosition() + CVector(-dir.y, dir.z, 0.0f) * (LANE_WIDTH / 2 + m_pathNodes[id].GetDividerWidth()); } float -- cgit v1.2.3