From 7d7e89cd8c2210c7b6e30af182478269d8a09829 Mon Sep 17 00:00:00 2001 From: sFx <56413073+sFxMTA@users.noreply.github.com> Date: Sun, 25 Apr 2021 02:35:55 +0200 Subject: [PATCH] Fix: Argument was missing in delivery There was a missing argument and people weren't able to get the delivery item at the end of their work --- client/main.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/main.lua b/client/main.lua index aeb0e162..5816c6c3 100644 --- a/client/main.lua +++ b/client/main.lua @@ -195,7 +195,7 @@ AddEventHandler('esx_jobs:action', function(job, zone, zoneKey) hintToDisplay = "no hint to display" hintIsShowed = false - TriggerServerEvent('esx_jobs:startWork', zone.Item) + TriggerServerEvent('esx_jobs:startWork', zone.Item, zoneKey) end --nextStep(zone.GPS) end)