Skip to content

Commit d6ecf98

Browse files
authored
Update server.lua
1 parent 15bec35 commit d6ecf98

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

server/server.lua

+8
Original file line numberDiff line numberDiff line change
@@ -174,13 +174,21 @@ RegisterNetEvent("Vorp_housing:sellhouse", function(id, key)
174174
if loc.Id == id then
175175
local lastprice = loc.Price * Config.SellPrice
176176
Character.addCurrency(0 , lastprice)
177+
local keycount = VorpInv.getItemCount(_source, result[1].key, nil)
178+
if keycount > 0 then
179+
VorpInv.subItem(_source, result[1].key, keycount, nil)
180+
end
177181
TriggerClientEvent("vorp:Tip", _source, _U('sellhouse') .. lastprice , 4000)
178182
end
179183
end
180184
for k, loc in pairs(Config.Houses) do
181185
if loc.Id == id then
182186
local lastprice = loc.Price * Config.SellPrice
183187
Character.addCurrency(0 , lastprice)
188+
local keycount = VorpInv.getItemCount(_source, result[1].key, nil)
189+
if keycount > 0 then
190+
VorpInv.subItem(_source, result[1].key, keycount, nil)
191+
end
184192
TriggerClientEvent("vorp:Tip", _source, _U('sellhouse') .. lastprice , 4000)
185193
end
186194
end

0 commit comments

Comments
 (0)