mirror of
https://git.minetest.land/VoxeLibre/VoxeLibre.git
synced 2024-11-23 02:51:06 +01:00
Fix piston not activate when powered from +X
This commit is contained in:
parent
6bece82970
commit
b2fecffb43
1 changed files with 2 additions and 2 deletions
|
@ -12,14 +12,14 @@ local piston_up_rules =
|
||||||
{{x=0, y=0, z=-1}, --everything apart from y+ (pusher side)
|
{{x=0, y=0, z=-1}, --everything apart from y+ (pusher side)
|
||||||
{x=0, y=0, z=1},
|
{x=0, y=0, z=1},
|
||||||
{x=-1, y=0, z=0},
|
{x=-1, y=0, z=0},
|
||||||
{x=1, y=0, z=1},
|
{x=1, y=0, z=0},
|
||||||
{x=0, y=-1, z=0}}
|
{x=0, y=-1, z=0}}
|
||||||
|
|
||||||
local piston_down_rules =
|
local piston_down_rules =
|
||||||
{{x=0, y=0, z=-1}, --everything apart from y- (pusher side)
|
{{x=0, y=0, z=-1}, --everything apart from y- (pusher side)
|
||||||
{x=0, y=0, z=1},
|
{x=0, y=0, z=1},
|
||||||
{x=-1, y=0, z=0},
|
{x=-1, y=0, z=0},
|
||||||
{x=1, y=0, z=1},
|
{x=1, y=0, z=0},
|
||||||
{x=0, y=1, z=0}}
|
{x=0, y=1, z=0}}
|
||||||
|
|
||||||
local piston_get_rules = function (node)
|
local piston_get_rules = function (node)
|
||||||
|
|
Loading…
Reference in a new issue