From 2a7dbe0506f311db8263aa424bc51a4f8810f68d Mon Sep 17 00:00:00 2001
From: Vanessa Ezekowitz <vanessaezekowitz@gmail.com>
Date: Fri, 17 Mar 2017 08:10:08 +0100
Subject: [PATCH] move the register_node calls out of the unifieddyes check simplify a little

---
 extranodes/init.lua |   11 ++++-------
 1 files changed, 4 insertions(+), 7 deletions(-)

diff --git a/extranodes/init.lua b/extranodes/init.lua
index 4871a0b..c3de5ab 100644
--- a/extranodes/init.lua
+++ b/extranodes/init.lua
@@ -146,10 +146,7 @@
 	sounds = default.node_sound_stone_defaults(),
 }
 
-if not minetest.get_modpath("unifieddyes") then
-	minetest.register_node(":technic:insulator_clip", iclip_def)
-	minetest.register_node(":technic:insulator_clip_fencepost", iclipfence_def)
-else
+if minetest.get_modpath("unifieddyes") then
 	iclip_def.paramtype2 = "colorwallmounted"
 	iclip_def.palette = "unifieddyes_palette_colorwallmounted.png"
 	iclip_def.after_place_node = unifieddyes.fix_rotation
@@ -162,11 +159,11 @@
 	iclipfence_def.after_dig_node = unifieddyes.after_dig_node
 	iclipfence_def.groups = {fence=1, choppy=1, snappy=1, oddly_breakable_by_hand=1, ud_param2_colorable = 1}
 	iclipfence_def.place_param2 = 171 -- medium amber, low saturation, closest color to default:wood
-
-	minetest.register_node(":technic:insulator_clip", iclip_def)
-	minetest.register_node(":technic:insulator_clip_fencepost", iclipfence_def)
 end
 
+minetest.register_node(":technic:insulator_clip", iclip_def)
+minetest.register_node(":technic:insulator_clip_fencepost", iclipfence_def)
+
 minetest.register_craft({
 	output = "technic:insulator_clip",
 	recipe = {

--
Gitblit v1.8.0