2018-12-12 15:04:53 +02:00
|
|
|
-- An Elepower Mod
|
2018-06-18 10:09:43 +03:00
|
|
|
-- Copyright 2018 Evert "Diamond" Prants <evert@lunasqu.ee>
|
|
|
|
|
|
|
|
local modpath = minetest.get_modpath(minetest.get_current_modname())
|
|
|
|
|
|
|
|
elepd = rawget(_G, "elepd") or {}
|
|
|
|
elepd.modpath = modpath
|
|
|
|
|
|
|
|
dofile(modpath.."/conduits.lua")
|
|
|
|
dofile(modpath.."/craftitems.lua")
|
2018-06-30 22:23:30 +03:00
|
|
|
dofile(modpath.."/compat/init.lua")
|
2018-06-18 10:09:43 +03:00
|
|
|
dofile(modpath.."/tools.lua")
|
|
|
|
dofile(modpath.."/nodes.lua")
|
2018-08-30 23:14:50 +03:00
|
|
|
dofile(modpath.."/fluids.lua")
|
2018-08-29 15:45:31 +03:00
|
|
|
dofile(modpath.."/gas_container.lua")
|
2018-06-21 13:14:12 +03:00
|
|
|
dofile(modpath.."/tanks.lua")
|
2018-08-09 15:30:07 +03:00
|
|
|
dofile(modpath.."/components.lua")
|
2018-06-18 10:09:43 +03:00
|
|
|
dofile(modpath.."/worldgen.lua")
|
|
|
|
dofile(modpath.."/crafting.lua")
|