diff --git a/server/commands.lua b/server/commands.lua index 2d1d94d..ca07b9b 100644 --- a/server/commands.lua +++ b/server/commands.lua @@ -132,7 +132,7 @@ end, "admin") QBCore.Commands.Add("gang", "Check Your Gang", {}, false, function(source, args) local Player = QBCore.Functions.GetPlayer(source) - if Player.PlayerData.gang.name ~= "geen" then + if Player.PlayerData.gang.name ~= "none" then TriggerClientEvent('QBCore:Notify', source, "Gang: "..Player.PlayerData.gang.label) else TriggerClientEvent('QBCore:Notify', source, "No Gang Affiliation", "error") @@ -163,4 +163,4 @@ QBCore.Commands.Add("ooc", "OOC Chat Message", {}, false, function(source, args) end end end -end) \ No newline at end of file +end)