From c4f0b331c081027f55cfee077cf0adc5f6b1d21a Mon Sep 17 00:00:00 2001 From: Vanessa Dannenberg Date: Sat, 21 Sep 2019 15:58:35 -0400 Subject: [PATCH] adjust for signs_lib's change of `allow_onpole` (explicitly set them to `true`, as signs_lib now defaults to disabled) --- init.lua | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/init.lua b/init.lua index 6b5c382..6d383ba 100644 --- a/init.lua +++ b/init.lua @@ -74,6 +74,7 @@ signs_lib.register_sign("basic_signs:sign_wall_locked", { entity_info = "standard", allow_hanging = true, allow_widefont = true, + allow_onpole = true, allow_onpole_horizontal = true }) @@ -91,6 +92,7 @@ signs_lib.register_sign("basic_signs:sign_wall_glass", { groups = {cracky = 3, oddly_breakable_by_hand = 3}, allow_hanging = true, allow_widefont = true, + allow_onpole = true, allow_onpole_horizontal = true, use_texture_alpha = true, }) @@ -109,6 +111,7 @@ signs_lib.register_sign("basic_signs:sign_wall_obsidian_glass", { groups = {cracky = 3}, allow_hanging = true, allow_widefont = true, + allow_onpole = true, allow_onpole_horizontal = true, use_texture_alpha = true, }) @@ -151,6 +154,7 @@ for i, color in ipairs(sign_colors) do }, allow_hanging = true, allow_widefont = true, + allow_onpole = true, allow_onpole_horizontal = true }) @@ -175,7 +179,6 @@ signs_lib.register_sign("basic_signs:yard_sign", { }, groups = wgroups, drop = "default:sign_wall_wood", - allow_onpole = false, allow_widefont = true })