Make technic_worldgen loadable before technic

There was a small amount of dependency of technic_worldgen on the
technic mod, for configuration loading and the top-level "technic" table.
Resolve that by sharing the configuration and top-level table between the
two mods.  This means that technic_worldgen can be loaded before technic,
permitting other mods to depend on it without depending on technic.
This commit is contained in:
Zefram
2014-07-26 19:03:07 +01:00
parent dd65a68ce9
commit 9f0b41fe71
5 changed files with 19 additions and 10 deletions

View File

@ -2,7 +2,7 @@
-- namespace: technic
-- (c) 2012-2013 by RealBadAngel <mk@realbadangel.pl>
technic = {}
technic = technic or {}
local load_start = os.clock()
local modpath = minetest.get_modpath("technic")