1
0
mirror of https://github.com/Dragonop/claycrafter.git synced 2024-06-29 14:10:18 +02:00

return 0 for vessels inv

This commit is contained in:
Dragonop 2016-01-22 05:01:47 -03:00
parent a51b17ca63
commit ff87677ae5

View File

@ -74,6 +74,8 @@ local function allow_metadata_inventory_put(pos, listname, index, stack, player)
return stack:get_count() return stack:get_count()
elseif listname == "dst" then elseif listname == "dst" then
return 0 return 0
elseif listname == "vessels" then
return 0
end end
end end