1
0
Fork 0
forked from Simnation/Main

Update functions.lua

This commit is contained in:
Nordi98 2025-06-30 11:48:13 +02:00
parent c57c5c1056
commit 84e2e2a568

View file

@ -33,7 +33,6 @@ end
---@param account string
---@return number
getAccountMoney = function(account)
print(json.encode(account))
local value = 0
if Config.banking == 'Renewed-Banking' then
value = exports['Renewed-Banking']:getAccountMoney(account)
@ -48,6 +47,7 @@ getAccountMoney = function(account)
else
value = exports[Config.banking]:GetAccountBalance(account)
end
print(value)
return value
end