From 722c1c6f89af6fd6c682f1fa4d2c5870f446d186 Mon Sep 17 00:00:00 2001 From: Vanessa Ezekowitz Date: Sun, 29 Jan 2017 03:50:22 -0500 Subject: [PATCH] fix wrong nodenames in on_rightclick replace code --- homedecor/lighting.lua | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/homedecor/lighting.lua b/homedecor/lighting.lua index c198225b..905fae5d 100644 --- a/homedecor/lighting.lua +++ b/homedecor/lighting.lua @@ -45,7 +45,7 @@ minetest.register_node("homedecor:glowlight_half", { after_dig_node = unifieddyes.after_dig_node, on_rightclick = function(pos, node, clicker, itemstack, pointed_thing) unifieddyes.on_rightclick(pos, node, clicker, - itemstack, pointed_thing, "glowlight_half", "wallmounted") + itemstack, pointed_thing, "homedecor:glowlight_half", "wallmounted") end, }) @@ -77,7 +77,7 @@ minetest.register_node("homedecor:glowlight_quarter", { after_dig_node = unifieddyes.after_dig_node, on_rightclick = function(pos, node, clicker, itemstack, pointed_thing) unifieddyes.on_rightclick(pos, node, clicker, - itemstack, pointed_thing, "glowlight_half", "wallmounted") + itemstack, pointed_thing, "homedecor:glowlight_quarter", "wallmounted") end, }) @@ -109,7 +109,7 @@ minetest.register_node("homedecor:glowlight_small_cube", { after_dig_node = unifieddyes.after_dig_node, on_rightclick = function(pos, node, clicker, itemstack, pointed_thing) unifieddyes.on_rightclick(pos, node, clicker, - itemstack, pointed_thing, "glowlight_small_cube", "wallmounted") + itemstack, pointed_thing, "homedecor:glowlight_small_cube", "wallmounted") end, })