summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--default_settings.lua2
-rw-r--r--init.lua9
2 files changed, 7 insertions, 4 deletions
diff --git a/default_settings.lua b/default_settings.lua
index 91e511c..9aa4835 100644
--- a/default_settings.lua
+++ b/default_settings.lua
@@ -27,6 +27,8 @@ local settings = {
drop_on_routing_fail = false,
delete_item_on_clearobject = true,
+
+ enable_new_flow_logic = false,
}
for name, value in pairs(settings) do
diff --git a/init.lua b/init.lua
index 6ceca65..80a83d3 100644
--- a/init.lua
+++ b/init.lua
@@ -14,14 +14,18 @@ pipeworks.worldpath = minetest.get_worldpath()
pipeworks.modpath = minetest.get_modpath("pipeworks")
dofile(pipeworks.modpath.."/default_settings.lua")
-
-- Read the external config file if it exists.
+
+
local worldsettingspath = pipeworks.worldpath.."/pipeworks_settings.txt"
local worldsettingsfile = io.open(worldsettingspath, "r")
if worldsettingsfile then
worldsettingsfile:close()
dofile(worldsettingspath)
end
+if pipeworks.enable_new_flow_logic then
+ minetest.log("warning", "pipeworks new_flow_logic is WIP and incomplete!")
+end
-- Random variables
@@ -111,9 +115,6 @@ dofile(pipeworks.modpath.."/filter-injector.lua")
dofile(pipeworks.modpath.."/trashcan.lua")
dofile(pipeworks.modpath.."/wielder.lua")
--- temporary flag to enable new flowing behaviour
-pipeworks.enable_new_flow_logic = true
-
if pipeworks.enable_pipes then dofile(pipeworks.modpath.."/pipes.lua") end
if pipeworks.enable_teleport_tube then dofile(pipeworks.modpath.."/teleport_tube.lua") end
if pipeworks.enable_pipe_devices then dofile(pipeworks.modpath.."/devices.lua") end