diff --git a/[esx_addons]/esx_clotheshop/server/main.lua b/[esx_addons]/esx_clotheshop/server/main.lua index ee739197..fc2bca8a 100644 --- a/[esx_addons]/esx_clotheshop/server/main.lua +++ b/[esx_addons]/esx_clotheshop/server/main.lua @@ -23,7 +23,7 @@ ESX.RegisterServerCallback('esx_clotheshop:buyClothes', function(source, cb) local xPlayer = ESX.GetPlayerFromId(source) if xPlayer.getMoney() >= Config.Price then - xPlayer.removeMoney(Config.Price) + xPlayer.removeMoney(Config.Price, "Outfit Purchase") TriggerClientEvent('esx:showNotification', source, _U('you_paid', Config.Price)) cb(true) else