diff options
author | Kyle <kyle.kylina@gmail.com> | 2012-09-01 18:59:10 -0700 |
---|---|---|
committer | Kyle <kyle.kylina@gmail.com> | 2012-09-01 18:59:10 -0700 |
commit | 0f7a87538d435a758d364e821c08c1cfa65e998c (patch) | |
tree | a0c45ead47452204f745e200054249e2f14ce9aa | |
parent | 6f1296198cc7aa0a159893429672e77c524ad8c2 (diff) | |
download | mesecons-0f7a87538d435a758d364e821c08c1cfa65e998c.tar mesecons-0f7a87538d435a758d364e821c08c1cfa65e998c.tar.gz mesecons-0f7a87538d435a758d364e821c08c1cfa65e998c.tar.bz2 mesecons-0f7a87538d435a758d364e821c08c1cfa65e998c.tar.xz mesecons-0f7a87538d435a758d364e821c08c1cfa65e998c.zip |
(oops) forgot the "out" connection
-rw-r--r-- | mesecons_gates/init.lua | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/mesecons_gates/init.lua b/mesecons_gates/init.lua index fdb0dc1..ce22f1d 100644 --- a/mesecons_gates/init.lua +++ b/mesecons_gates/init.lua @@ -3,11 +3,13 @@ for g in ipairs(gates) do gate = gates[g] if g < 3 then rules = { {x=-1, y=0, z=0}, + {x=1, y=0, z=0}, } else rules = { {x=0, y=0, z=1}, {x=0, y=0, z=-1}, + {x=1, y=0, z=0}, } end for on=0,1 do |