remove debug prints

oops
This commit is contained in:
Jim Shield
2025-06-26 20:08:31 +01:00
parent 5c69f8dd28
commit e204e6153d

View File

@@ -872,10 +872,6 @@ end
function hasFreeInventorySlots(slots, src) function hasFreeInventorySlots(slots, src)
local inv = getPlayerInv(src) local inv = getPlayerInv(src)
print(countTable(inv))
print(countTable(inv) + slots)
print(InventorySlots)
print((countTable(inv) + slots) <= InventorySlots)
if (countTable(inv) + slots) <= InventorySlots then if (countTable(inv) + slots) <= InventorySlots then
return true return true
end end