From 0a1f90c391dcc4907665e1211c666310d36a740b Mon Sep 17 00:00:00 2001 From: Vanessa Ezekowitz Date: Fri, 4 Jan 2013 01:34:25 -0500 Subject: Made pipes able to carry water! It was just a minor logic error resulting from moving the water flowing code into it's own file when I originally imported it. Many thanks to Mauvebic for writing it! --- init.lua | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'init.lua') diff --git a/init.lua b/init.lua index fe85f40..d7da236 100644 --- a/init.lua +++ b/init.lua @@ -135,8 +135,8 @@ end -- now define the nodes! -local empty_nodenames = {} -local full_nodenames = {} +pipes_empty_nodenames = {} +pipes_full_nodenames = {} for xm = 0, 1 do for xp = 0, 1 do @@ -310,8 +310,8 @@ for zp = 0, 1 do pipe_scanforobjects(pos) end }) - table.insert(empty_nodenames,"pipeworks:pipe_"..pname.."_empty") -- for the abms - table.insert(full_nodenames,"pipeworks:pipe_"..pname.."_loaded") -- for bacon + table.insert(pipes_empty_nodenames,"pipeworks:pipe_"..pname.."_empty") -- for the abms + table.insert(pipes_full_nodenames,"pipeworks:pipe_"..pname.."_loaded") -- for bacon end end end -- cgit v1.2.3