diff options
author | Novatux <nathanael.courant@laposte.net> | 2013-10-06 10:35:53 +0200 |
---|---|---|
committer | Novatux <nathanael.courant@laposte.net> | 2013-10-06 10:35:53 +0200 |
commit | 79897c8fe60add57f9c759c74f3683c4732dda14 (patch) | |
tree | 58ce559b92c2d51a80dea0e88e134a4b2ae9a428 /init.lua | |
parent | 7546bb17fb858d11db9ea526ad73f8181f91a154 (diff) |
Better deployer and node breaker mesecons rules.
Diffstat (limited to 'init.lua')
-rw-r--r-- | init.lua | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -111,6 +111,10 @@ dofile(modpath.."/crafts.lua") dofile(modpath.."/tubes.lua") +rules_all = {{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=0, y=1, z=1},{x=0, y=1, z=-1},{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=1, y=-1, z=0},{x=-1, y=-1, z=0}, + {x=0, y=1, z=0}, {x=0, y=-1, z=0}} if enable_pipes then dofile(modpath.."/pipes.lua") end if enable_teleport_tube then dofile(modpath.."/teleport_tube.lua") end if enable_pipe_devices then dofile(modpath.."/devices.lua") end |