remove a couple of debug prints

This commit is contained in:
Vanessa Ezekowitz 2017-01-25 13:46:44 -05:00
parent a1a187d220
commit 4d4f38d035
1 changed files with 0 additions and 2 deletions

View File

@ -307,12 +307,10 @@ minetest.register_lbm({
minetest.set_node(pos, { name = "unifiedbricks:brickblock", param2 = paletteidx })
local meta = minetest.get_meta(pos)
meta:set_string("dye", "unifieddyes:"..color1)
print(dump(color))
elseif string.find(type, "clayblock") then
minetest.set_node(pos, { name = "unifiedbricks:clayblock", param2 = paletteidx })
local meta = minetest.get_meta(pos)
meta:set_string("dye", "unifieddyes:"..color1)
print(dump(color))
end
end
})