fix(server/functions): Corrected a typo in the savePlayers query

This commit is contained in:
Linden
2021-06-24 00:39:51 +10:00
committed by GitHub
parent a3d611e584
commit 2980fd2160
+1 -1
View File
@@ -165,7 +165,7 @@ end
local savePlayers = -1
Citizen.CreateThread(function()
savePlayers = MySQL.Sync.store("UPDATE users SET `accounts` = ?, `job` = ?, `job_grade` = ?, `group` = ?, `position`= ?, `inventory`, = ?, `loadout` = ? WHERE `identifier` = ?")
savePlayers = MySQL.Sync.store("UPDATE users SET `accounts` = ?, `job` = ?, `job_grade` = ?, `group` = ?, `position` = ?, `inventory` = ?, `loadout` = ? WHERE `identifier` = ?")
end)
ESX.SavePlayer = function(xPlayer, cb)