Skip to content

Commit

Permalink
add missing commas
Browse files Browse the repository at this point in the history
  • Loading branch information
IngPleb authored May 19, 2022
1 parent 17c1e06 commit 24d1e59
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions server/server.lua
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ CreateThread(function()
exports.oxmysql:execute('DELETE FROM player_vehicles WHERE citizenid = ?', { citizenid })
exports.oxmysql:execute('DELETE FROM player_outfits WHERE citizenid = ?', { citizenid })
exports.oxmysql:execute('DELETE FROM player_houses WHERE citizenid = ?', { citizenid })
exports.oxmysql.execute('DELETE FROM player_contacts WHERE citizenid =?' { citizenid })
exports.oxmysql.execute('DELETE FROM playerskins WHERE citizenid =?' { citizenid })
exports.oxmysql.execute('DELETE FROM player_contacts WHERE citizenid =?', { citizenid })
exports.oxmysql.execute('DELETE FROM playerskins WHERE citizenid =?', { citizenid })
TriggerClientEvent("QBCore:Notify",src,Lang:t("info.command_executed"))
Config.finish_function(src,playerId)
end)
Expand Down

0 comments on commit 24d1e59

Please sign in to comment.