1
0
mirror of https://github.com/VCMP-SqMod/SqMod.git synced 2024-11-08 00:37:15 +01:00

Fixes SetSpawnCameraLookAtEx not working as intended

`SetSpawnCameraLookAtEx` was basically the same as `SetSpawnPlayerPositionEx`
This commit is contained in:
KAKAN 2021-09-12 17:46:49 +00:00 committed by GitHub
parent 0c4c78da6e
commit 0d323f4a26
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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);
} }
// ------------------------------------------------------------------------------------------------ // ------------------------------------------------------------------------------------------------