diff --git a/server/main.lua b/server/main.lua index 1ef54c8d..980850e8 100644 --- a/server/main.lua +++ b/server/main.lua @@ -23,9 +23,9 @@ function SetPropertyOwned(name, price, rented, owner) TriggerClientEvent('esx_property:setPropertyOwned', xPlayer.source, name, true, rented) if rented then - xPlayer.showNotification(_U('rented_for', ESX.Math.GroupDigits(price))) + xPlayer.showNotification(_U('rent_for', ESX.Math.GroupDigits(price))) else - xPlayer.showNotification(_U('purchased_for', ESX.Math.GroupDigits(price))) + xPlayer.showNotification(_U('buy_for', ESX.Math.GroupDigits(price))) end end end)