From 4406654fa4c031882aaffddd6608ba011b8174c3 Mon Sep 17 00:00:00 2001 From: Anthony Zhang Date: Mon, 11 Mar 2013 17:37:50 -0400 Subject: Support metadata in piston pushing (so that microcontrollers and such can be pushed), support pushing chests (not locked ones though), and add two missing rules for pistons (z- top and bottom, but not z- itself). This still avoids the piston pushing power source issue. --- mesecons_pistons/init.lua | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'mesecons_pistons') diff --git a/mesecons_pistons/init.lua b/mesecons_pistons/init.lua index d496b1e..4998ae6 100644 --- a/mesecons_pistons/init.lua +++ b/mesecons_pistons/init.lua @@ -8,7 +8,9 @@ piston_rules = {x=-1, y=1, z=0}, {x=-1, y=-1, z=0}, {x=0, y=1, z=1}, - {x=0, y=-1, z=1}} + {x=0, y=-1, z=1}, + {x=0, y=1, z=-1}, + {x=0, y=-1, z=-1}} local piston_get_rules = function (node) local rules = piston_rules -- cgit v1.2.3