diff options
Diffstat (limited to 'trafficlight/init.lua')
| -rw-r--r-- | trafficlight/init.lua | 17 | 
1 files changed, 16 insertions, 1 deletions
diff --git a/trafficlight/init.lua b/trafficlight/init.lua index 73b8c70..d594e75 100644 --- a/trafficlight/init.lua +++ b/trafficlight/init.lua @@ -96,7 +96,22 @@ minetest.register_node(":streets:digiline_distributor",{  		receptor = {},  		effector = {},  		wire = { -			rules = streets.rules_pole +			rules = { +				{x= 0, y= 0, z=-1}, +				{x= 1, y= 0, z= 0}, +				{x=-1, y= 0, z= 0}, +				{x= 0, y= 0, z= 1}, +				{x= 1, y= 1, z= 0}, +				{x= 1, y=-1, z= 0}, +				{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= 0}, +				{x= 0, y= 1, z= 0} +			}  		}  	}  })  | 
