From d9e51894198209a245e01af917518372d6e3d405 Mon Sep 17 00:00:00 2001 From: Matthew <22198949+MafewTM@users.noreply.github.com> Date: Thu, 11 Jan 2024 01:13:25 -0500 Subject: [PATCH] fix(config): replace old management exports --- config/server.lua | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/config/server.lua b/config/server.lua index 292766b02..a33e93e5d 100644 --- a/config/server.lua +++ b/config/server.lua @@ -131,10 +131,10 @@ return { end, getSocietyAccount = function(accountName) - return exports.qbx_management:GetAccount(accountName) + return exports['Renewed-Banking']:getAccountMoney(accountName) end, - + removeSocietyMoney = function(accountName, payment) - return exports.qbx_management:RemoveMoney(accountName, payment) + return exports['Renewed-Banking']:removeAccountMoney(accountName, payment) end } \ No newline at end of file