From 7ac2abb0b8424225fe4f7e214808c3166f7d010b Mon Sep 17 00:00:00 2001 From: Wuzzy Date: Tue, 13 Jun 2017 14:20:49 +0200 Subject: [PATCH] Make pressure plates fully transparent --- mods/ITEMS/REDSTONE/mesecons_pressureplates/init.lua | 2 ++ 1 file changed, 2 insertions(+) diff --git a/mods/ITEMS/REDSTONE/mesecons_pressureplates/init.lua b/mods/ITEMS/REDSTONE/mesecons_pressureplates/init.lua index 9ec2ffe94..e323fc9d4 100644 --- a/mods/ITEMS/REDSTONE/mesecons_pressureplates/init.lua +++ b/mods/ITEMS/REDSTONE/mesecons_pressureplates/init.lua @@ -67,6 +67,7 @@ function mesecon:register_pressure_plate(offstate, onstate, description, texture wield_image = texture_off, wield_scale = { x=1, y=1, z=0.5 }, paramtype = "light", + sunlight_propagates = true, selection_box = pp_box_off, node_box = pp_box_off, groups = groups_off, @@ -95,6 +96,7 @@ function mesecon:register_pressure_plate(offstate, onstate, description, texture wield_image = texture_on, wield_scale = { x=1, y=1, z=0.25 }, paramtype = "light", + sunlight_propagates = true, selection_box = pp_box_on, node_box = pp_box_on, groups = groups_on,