From 11fac41fd50170dd453dc9c68e89adde5df857a7 Mon Sep 17 00:00:00 2001 From: Mycroft Date: Sat, 10 Sep 2022 00:44:50 +0100 Subject: [PATCH] feat(esx_garage): Reasons for account changes --- [esx_addons]/esx_garage/server/main.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/[esx_addons]/esx_garage/server/main.lua b/[esx_addons]/esx_garage/server/main.lua index 8c92fd16..36ab3159 100644 --- a/[esx_addons]/esx_garage/server/main.lua +++ b/[esx_addons]/esx_garage/server/main.lua @@ -129,7 +129,7 @@ AddEventHandler("esx_garage:payPound", function(amount) local xPlayer = ESX.GetPlayerFromId(source) if xPlayer.getMoney() >= amount then - xPlayer.removeMoney(amount) + xPlayer.removeMoney(amount, "Impound Fee") xPlayer.showNotification(_U('pay_Impound_bill', amount)) else xPlayer.showNotification(_U('missing_money'))