From 103fd17a939b24a463799a12cb75736a2e91ed50 Mon Sep 17 00:00:00 2001 From: Wuzzy Date: Tue, 17 Jan 2017 17:43:39 +0100 Subject: [PATCH] Pressure plates are now attached nodes --- mods/redstone/mesecons_pressureplates/init.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mods/redstone/mesecons_pressureplates/init.lua b/mods/redstone/mesecons_pressureplates/init.lua index e16975220..73ad8f63b 100644 --- a/mods/redstone/mesecons_pressureplates/init.lua +++ b/mods/redstone/mesecons_pressureplates/init.lua @@ -62,7 +62,7 @@ function mesecon:register_pressure_plate(offstate, onstate, description, texture paramtype = "light", selection_box = pp_box_off, node_box = pp_box_off, - groups = {snappy = 2, oddly_breakable_by_hand = 3}, + groups = {snappy = 2, oddly_breakable_by_hand = 3, attached_node = 1}, is_ground_content = false, description = description, pressureplate = ppspec, @@ -82,7 +82,7 @@ function mesecon:register_pressure_plate(offstate, onstate, description, texture paramtype = "light", selection_box = pp_box_on, node_box = pp_box_on, - groups = {snappy = 2, oddly_breakable_by_hand = 3, not_in_creative_inventory = 1}, + groups = {snappy = 2, oddly_breakable_by_hand = 3, attached_node = 1, not_in_creative_inventory = 1}, is_ground_content = false, drop = offstate, pressureplate = ppspec,