diff --git a/client/laststand.lua b/client/laststand.lua index 8c49653..bcc07f6 100644 --- a/client/laststand.lua +++ b/client/laststand.lua @@ -5,7 +5,7 @@ local WEAPONS = exports.qbx_core:GetWeapons() ---blocks until ped is no longer moving function WaitForPlayerToStopMoving() local timeOut = 10000 - while GetEntitySpeed(cache.ped) > 0.5 or IsPedRagdoll(cache.ped) and timeOut > 1 do timeOut -= 10 Wait(10) end + while GetEntitySpeed(cache.ped) > 1.0 or IsPedRagdoll(cache.ped) and timeOut > 1 do timeOut -= 10 Wait(10) end end --- low level GTA resurrection