From 7488f6c091c04593bbcec4b555ac4a4493f83694 Mon Sep 17 00:00:00 2001 From: Vanessa Ezekowitz Date: Tue, 24 Dec 2013 09:11:26 -0500 Subject: Fix glitch in tube autorouter (brain-o in how I was handling unknown/bad nodes being passed to it. this works better and lets the code do its job properly). --- autoplace_tubes.lua | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) (limited to 'autoplace_tubes.lua') diff --git a/autoplace_tubes.lua b/autoplace_tubes.lua index dfac997..ba181c0 100644 --- a/autoplace_tubes.lua +++ b/autoplace_tubes.lua @@ -17,11 +17,7 @@ end --a function for determining which side of the node we are on local function nodeside(node, tubedir) - if not tubedir or - not node or - not (type(node.param2) == "number" and node.param2 > 0 and node.param2 < 23) then - return "back" - end + if node and (node.param2 < 0 or node.param2 > 23) then node.param2 = 0 end --get a vector pointing back local backdir = minetest.facedir_to_dir(node.param2) -- cgit v1.2.3