From 0d323f4a2636811465a7a68b178d2ed82ab30abd Mon Sep 17 00:00:00 2001 From: KAKAN <22027824+theKAKAN@users.noreply.github.com> Date: Sun, 12 Sep 2021 17:46:49 +0000 Subject: [PATCH] Fixes `SetSpawnCameraLookAtEx` not working as intended `SetSpawnCameraLookAtEx` was basically the same as `SetSpawnPlayerPositionEx` --- module/Misc/Functions.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module/Misc/Functions.cpp b/module/Misc/Functions.cpp index 1a0884a4..90a1d6a5 100644 --- a/module/Misc/Functions.cpp +++ b/module/Misc/Functions.cpp @@ -762,7 +762,7 @@ void SetSpawnCameraPositionEx(float x, float y, float z) // ------------------------------------------------------------------------------------------------ void SetSpawnCameraLookAtEx(float x, float y, float z) { - _Func->SetSpawnPlayerPosition(x, y, z); + _Func->SetSpawnCameraLookAt(x, y, z); } // ------------------------------------------------------------------------------------------------