diff options
author | Vanessa Ezekowitz <vanessaezekowitz@gmail.com> | 2013-01-01 17:51:55 -0500 |
---|---|---|
committer | Vanessa Ezekowitz <vanessaezekowitz@gmail.com> | 2013-01-01 17:51:55 -0500 |
commit | 4eaad140482091d06a06c800dbfbf8b4b453465d (patch) | |
tree | 70655c1c691e799b17a5a6dc75712ada669c15c2 /init.lua | |
parent | d748eea48e0955d2acc6cb6626fadb41d58ea125 (diff) |
Minor tweak to fix missing smooth bend on some T-junctions.
Diffstat (limited to 'init.lua')
-rw-r--r-- | init.lua | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -234,7 +234,7 @@ for zp = 0, 1 do end end - if (jx==1 and jy==1 and jz~=1) or (jx==1 and jy~=1 and jz==1) or (jx~= 1 and jy==1 and jz==1) then + if jx+jy+jz >= 2 then pipe_addbox(outboxes, pipe_bendsphere) end |