Quick fix for job tickets

This commit is contained in:
Jim Shield
2022-06-21 15:18:01 +01:00
committed by GitHub
parent 4b028d75b1
commit ec9dc51ccf

View File

@@ -37,7 +37,7 @@ RegisterServerEvent('jim-payments:Tickets:Give', function(data, biller, gang)
end
local duty = true
if not biller.PlayerData.job.onduty or not gang then duty = false end
if not biller.PlayerData.job.onduty or gang == nil then duty = false end
-- If ticket system enabled, do this
if duty and Config.TicketSystem then
@@ -165,4 +165,4 @@ QBCore.Functions.CreateCallback('jim-payments:MakePlayerList', function(source,
onlineList[#onlineList+1] = { value = tonumber(v), text = "["..v.."] - "..P.PlayerData.charinfo.firstname..' '..P.PlayerData.charinfo.lastname }
end
cb(onlineList)
end)
end)