From 921c05da0d057469032fe9aced321503f1f0d498 Mon Sep 17 00:00:00 2001 From: Vanessa Ezekowitz Date: Sat, 4 Feb 2017 20:11:09 -0500 Subject: updated several mods to use newer unified dyes API blox, bobblocks, coloredwood, framedglass, homedecor, ilights, plasticbox, stained_glass, unifiedbricks, and of course unified dyes. --- lrfurn/longsofas.lua | 18 ++++++------------ 1 file changed, 6 insertions(+), 12 deletions(-) (limited to 'lrfurn/longsofas.lua') diff --git a/lrfurn/longsofas.lua b/lrfurn/longsofas.lua index b741aa9..b5216c2 100644 --- a/lrfurn/longsofas.lua +++ b/lrfurn/longsofas.lua @@ -18,7 +18,7 @@ minetest.register_node("lrfurn:longsofa", { paramtype2 = "colorwallmounted", palette = "unifieddyes_palette_colorwallmounted.png", inventory_image = "lrfurn_longsofa_inv.png", - groups = {snappy=3}, + groups = {snappy=3, ud_param2_colorable = 1}, sounds = default.node_sound_wood_defaults(), selection_box = longsofa_cbox, node_box = longsofa_cbox, @@ -40,19 +40,13 @@ minetest.register_node("lrfurn:longsofa", { after_dig_node = unifieddyes.after_dig_node, on_rightclick = function(pos, node, clicker, itemstack, pointed_thing) local itemname = itemstack:get_name() - if string.find(itemname, "dye:") or string.find(itemname, "unifieddyes:") then - unifieddyes.on_rightclick(pos, node, clicker, - itemstack, pointed_thing, "lrfurn:longsofa", "wallmounted") - else - if not clicker:is_player() then - return itemstack - end - - pos.y = pos.y-0.5 - clicker:setpos(pos) - clicker:set_hp(20) + if not clicker:is_player() then return itemstack end + pos.y = pos.y-0.5 + clicker:setpos(pos) + clicker:set_hp(20) + return itemstack end }) -- cgit v1.2.3