perf: updating last location

This commit is contained in:
Andyyy7666
2023-01-05 17:05:50 +01:00
parent 906383bbd9
commit 5242cf289d
2 changed files with 3 additions and 15 deletions

View File

@@ -83,7 +83,9 @@ AddEventHandler("playerDropped", function()
local player = source
local character = NDCore.Players[player]
if character then
NDCore.Functions.UpdateLastLocation(character.id, character.lastLocation)
local ped = GetPlayerPed(player)
local lastLocation = GetEntityCoords(ped)
NDCore.Functions.UpdateLastLocation(character.id, {x = lastLocation.x, y = lastLocation.y, z = lastLocation.z})
end
TriggerEvent("ND:characterUnloaded", player, character)
character = nil