2018-06-18 07:09:43 +00:00
|
|
|
-- A Elepower Mod
|
|
|
|
-- 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 19:23:30 +00:00
|
|
|
dofile(modpath.."/compat/init.lua")
|
2018-06-18 07:09:43 +00:00
|
|
|
dofile(modpath.."/tools.lua")
|
|
|
|
dofile(modpath.."/nodes.lua")
|
2018-06-24 09:10:47 +00:00
|
|
|
dofile(modpath.."/liquids.lua")
|
2018-06-21 10:14:12 +00:00
|
|
|
dofile(modpath.."/tanks.lua")
|
2018-06-18 07:09:43 +00:00
|
|
|
dofile(modpath.."/dusts.lua")
|
2018-07-28 18:46:28 +00:00
|
|
|
dofile(modpath.."/plates.lua")
|
2018-06-18 11:43:40 +00:00
|
|
|
dofile(modpath.."/gears.lua")
|
2018-06-18 07:09:43 +00:00
|
|
|
dofile(modpath.."/worldgen.lua")
|
|
|
|
dofile(modpath.."/crafting.lua")
|