1
0
mirror of https://github.com/VCMP-SqMod/SqMod.git synced 2026-04-21 11:37:23 +02:00

Merge pull request #53 from theKAKAN/patch-1

Fixes `SetSpawnCameraLookAtEx` not working as intended
This commit is contained in:
Sandu Liviu Catalin
2021-09-12 21:17:14 +03:00
committed by GitHub
+1 -1
View File
@@ -762,7 +762,7 @@ void SetSpawnCameraPositionEx(float x, float y, float z)
// ------------------------------------------------------------------------------------------------ // ------------------------------------------------------------------------------------------------
void SetSpawnCameraLookAtEx(float x, float y, float z) void SetSpawnCameraLookAtEx(float x, float y, float z)
{ {
_Func->SetSpawnPlayerPosition(x, y, z); _Func->SetSpawnCameraLookAt(x, y, z);
} }
// ------------------------------------------------------------------------------------------------ // ------------------------------------------------------------------------------------------------