elepower/elepower_machines/init.lua

24 lines
478 B
Lua
Raw Permalink Normal View History

-- An Elepower Mod
2018-06-18 07:09:43 +00:00
-- 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")
-- Upgrading
dofile(modpath.."/upgrading.lua")
2018-06-22 11:51:27 +00:00
-- Other
2018-06-18 07:09:43 +00:00
dofile(modpath.."/nodes.lua")
dofile(modpath.."/craftitems.lua")
2018-06-22 11:51:27 +00:00
-- Crafting recipes
dofile(modpath.."/crafting.lua")