From 3d5c1c32bb677f79a677d890fc2dfc4bd492e1f7 Mon Sep 17 00:00:00 2001 From: Andyyy7666 <86536434+Andyyy7666@users.noreply.github.com> Date: Mon, 16 Mar 2026 05:36:14 +0100 Subject: [PATCH] feat(client/death): timestamp on death --- client/death.lua | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/client/death.lua b/client/death.lua index f3d40f4..10da29e 100644 --- a/client/death.lua +++ b/client/death.lua @@ -15,7 +15,8 @@ local function PlayerEliminated(deathCause, killerServerId, killerClientId) deathCause = deathCause, killerServerId = killerServerId, killerClientId = killerClientId, - damagedBones = usingAmbulance and ambulance:getBodyDamage() or {} + damagedBones = usingAmbulance and ambulance:getBodyDamage() or {}, + timestamp = GetCloudTimeAsInt() } TriggerEvent("ND:playerEliminated", info) TriggerServerEvent("ND:playerEliminated", info)