forked from thunderdog1138/star_wars
Creative: Automatic item colorization for creative mode
This commit is contained in:
parent
2668619638
commit
24559d012e
|
@ -55,8 +55,7 @@ function minetest.handle_node_drops(pos, drops, digger)
|
||||||
local inv = digger:get_inventory()
|
local inv = digger:get_inventory()
|
||||||
if inv then
|
if inv then
|
||||||
for _, item in ipairs(drops) do
|
for _, item in ipairs(drops) do
|
||||||
item = ItemStack(item):get_name()
|
if not inv:contains_item("main", item, true) then
|
||||||
if not inv:contains_item("main", item) then
|
|
||||||
inv:add_item("main", item)
|
inv:add_item("main", item)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in New Issue