Creative: Automatic item colorization for creative mode

This commit is contained in:
Dániel Juhász 2017-04-22 14:34:51 +02:00 committed by paramat
parent 2668619638
commit 24559d012e
1 changed files with 1 additions and 2 deletions

View File

@ -55,8 +55,7 @@ function minetest.handle_node_drops(pos, drops, digger)
local inv = digger:get_inventory()
if inv then
for _, item in ipairs(drops) do
item = ItemStack(item):get_name()
if not inv:contains_item("main", item) then
if not inv:contains_item("main", item, true) then
inv:add_item("main", item)
end
end