1
0
mirror of https://github.com/mt-mods/pipeworks.git synced 2025-06-30 07:10:45 +02:00

fix 2 other minetest.item_drops

This commit is contained in:
HybridDog
2015-11-18 10:07:00 +01:00
parent 352e23cfb1
commit 6de437b83d
2 changed files with 11 additions and 11 deletions

View File

@ -6,7 +6,7 @@ if pipeworks.enable_mese_tube then
local inv = meta:get_inventory()
for i = 1, 6 do
for _, stack in ipairs(inv:get_list("line"..i)) do
minetest.item_drop(stack, "", pos)
minetest.item_drop(stack, nil, pos)
end
end
end