From fab7f88910a8dc3464e01f649d82eeaeebe9cbd0 Mon Sep 17 00:00:00 2001 From: Meyndflay Date: Mon, 9 Jun 2025 19:04:09 +0800 Subject: [PATCH] refactor(es_extended/client/modules/actions.lua): Return Raw Vector Coords for Actions:TrackPedCoordsOnce() --- [core]/es_extended/client/modules/actions.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/[core]/es_extended/client/modules/actions.lua b/[core]/es_extended/client/modules/actions.lua index 8308c017..ea54afb1 100644 --- a/[core]/es_extended/client/modules/actions.lua +++ b/[core]/es_extended/client/modules/actions.lua @@ -56,7 +56,7 @@ function Actions:TrackPedCoordsOnce() local coords = GetEntityCoords(ESX.PlayerData.ped) - return { x = coords.x, y = coords.y, z = coords.z } + return coords end }) end)