2018-06-18 07:09:43 +00:00
|
|
|
-- Elepower Mod
|
|
|
|
-- Copyright 2018 Evert "Diamond" Prants <evert@lunasqu.ee>
|
|
|
|
|
|
|
|
local modpath = minetest.get_modpath(minetest.get_current_modname())
|
|
|
|
|
|
|
|
elepm = rawget(_G, "elepm") or {}
|
|
|
|
elepm.modpath = modpath
|
|
|
|
|
2018-06-22 11:51:27 +00:00
|
|
|
-- Utility
|
2018-06-18 07:09:43 +00:00
|
|
|
dofile(modpath.."/craft.lua")
|
2018-06-22 11:51:27 +00:00
|
|
|
|
|
|
|
-- Machines
|
|
|
|
dofile(modpath.."/machines/init.lua")
|
|
|
|
|
|
|
|
-- Other
|
2018-06-18 07:09:43 +00:00
|
|
|
dofile(modpath.."/nodes.lua")
|
2018-06-22 11:51:27 +00:00
|
|
|
|
|
|
|
-- Crafting recipes
|
|
|
|
dofile(modpath.."/crafting.lua")
|