From 48be7ddef1171855158814923d882aa89b87acb6 Mon Sep 17 00:00:00 2001 From: Vanessa Ezekowitz Date: Mon, 25 Sep 2017 23:53:18 -0400 Subject: [PATCH] brain-o in banister placement. fixes #388 there was no reason to explicitly check whether to place a horizontal next to another horizontal after all the other checks were done. --- homedecor/handlers/expansion.lua | 8 -------- 1 file changed, 8 deletions(-) diff --git a/homedecor/handlers/expansion.lua b/homedecor/handlers/expansion.lua index c010bf43..e9d2ec53 100644 --- a/homedecor/handlers/expansion.lua +++ b/homedecor/handlers/expansion.lua @@ -368,14 +368,6 @@ function homedecor.place_banister(itemstack, placer, pointed_thing) fdir = right_fwd_node.param2 pos = fwd_pos new_place_name = string.gsub(right_fwd_node.name, "_diagonal_.-$", "_horizontal") - - -- try to follow a horizontal with another of the same - elseif left_node and string.find(left_node.name, "homedecor:banister_.*_horizontal") then - fdir = left_node.param2 - new_place_name = left_node.name - elseif right_node and string.find(right_node.name, "homedecor:banister_.*_horizontal") then - fdir = right_node.param2 - new_place_name = right_node.name end -- manually invert left-right orientation