Skip to content

Commit

Permalink
fix(convert/qb): convert money
Browse files Browse the repository at this point in the history
  • Loading branch information
thelindat committed Nov 10, 2022
1 parent 5ccf3d2 commit da41a41
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup/convert.lua
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ local function ConvertQB()
local inventory, slot = {}, 0
local user = users[i]
local items = user.inventory and json.decode(user.inventory) or {}
local accounts = user.money and json.decode(user.accounts) or {}
local accounts = user.money and json.decode(user.money) or {}

for k, v in pairs(accounts) do
if type(v) == 'table' then break end
Expand Down

0 comments on commit da41a41

Please sign in to comment.