From 02d2154bbdfcfca4cd764b090b3529152ad1d2fe Mon Sep 17 00:00:00 2001 From: Vanessa Dannenberg Date: Wed, 12 Sep 2018 23:11:30 -0400 Subject: update blox, bobblocks, homedecor, plasticbox, solidcolor, stained glass, unifieddyes, and unifiedmesecons --- solidcolor/init.lua | 17 ----------------- 1 file changed, 17 deletions(-) (limited to 'solidcolor') diff --git a/solidcolor/init.lua b/solidcolor/init.lua index 8b8d87a..5fa7829 100644 --- a/solidcolor/init.lua +++ b/solidcolor/init.lua @@ -28,20 +28,3 @@ unifieddyes.register_color_craft({ } }) -minetest.register_lbm({ - name = "solidcolor:recolor", - label = "Convert to new palette", - nodenames = {"solidcolor:block"}, - 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 -}) -- cgit v1.2.3