summaryrefslogtreecommitdiff
path: root/init.lua
diff options
context:
space:
mode:
authorthetaepsilon-gamedev <thetaepsilon-gamedev@noreply.users.github.com>2017-10-01 15:18:00 +0100
committerthetaepsilon-gamedev <thetaepsilon-gamedev@noreply.users.github.com>2017-10-01 15:18:00 +0100
commitf7b17197677ea3675eee6bc667370fe3e23ac099 (patch)
treece982d46436cefd1ae3db287e70eb66441ba817a /init.lua
parent3a1edac06ce193179b58ffcd055b492839d30018 (diff)
downloadpipeworks-f7b17197677ea3675eee6bc667370fe3e23ac099.tar
pipeworks-f7b17197677ea3675eee6bc667370fe3e23ac099.tar.gz
pipeworks-f7b17197677ea3675eee6bc667370fe3e23ac099.tar.bz2
pipeworks-f7b17197677ea3675eee6bc667370fe3e23ac099.tar.xz
pipeworks-f7b17197677ea3675eee6bc667370fe3e23ac099.zip
new flow logic: node registry: split registration functions into seperate file to allow ABM code to inspect tables
Diffstat (limited to 'init.lua')
-rw-r--r--init.lua3
1 files changed, 2 insertions, 1 deletions
diff --git a/init.lua b/init.lua
index d6067e5..e91c4dc 100644
--- a/init.lua
+++ b/init.lua
@@ -118,9 +118,10 @@ dofile(pipeworks.modpath.."/wielder.lua")
local logicdir = "/new_flow_logic/"
-- note that even with these files the new flow logic is not yet default
+dofile(pipeworks.modpath..logicdir.."flowable_node_registry.lua")
dofile(pipeworks.modpath..logicdir.."abms.lua")
dofile(pipeworks.modpath..logicdir.."abm_register.lua")
-dofile(pipeworks.modpath..logicdir.."flowable_node_registry.lua")
+dofile(pipeworks.modpath..logicdir.."flowable_node_registry_install.lua")
if pipeworks.enable_pipes then dofile(pipeworks.modpath.."/pipes.lua") end
if pipeworks.enable_teleport_tube then dofile(pipeworks.modpath.."/teleport_tube.lua") end