get rid of old 89->256 LBM, obsolete

master
Vanessa Dannenberg 2018-09-12 22:48:55 -04:00
parent 271f59bbac
commit 586fe3a7c7
1 changed files with 0 additions and 17 deletions

View File

@ -96,20 +96,3 @@ minetest.register_lbm({
end,
})
minetest.register_lbm({
name = "plasticbox:recolor",
label = "Convert to new palette",
nodenames = {"plasticbox:plasticbox"},
action = function(pos, node)
local meta = minetest.get_meta(pos)
if meta:get_string("palette") ~= "ext" then
if node.param2 == 0 then
node.param2 = 240
else
node.param2 = unifieddyes.convert_classic_palette[node.param2]
end
minetest.swap_node(pos,node)
meta:set_string("palette", "ext")
end
end
})