elepower/elepower_nuclear/init.lua

14 lines
386 B
Lua
Raw 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())
elenuclear = rawget(_G, "elenuclear") or {}
elenuclear.modpath = modpath
dofile(modpath.."/craftitems.lua")
dofile(modpath.."/nodes.lua")
dofile(modpath.."/fluids.lua")
dofile(modpath.."/crafting.lua")
2018-07-27 15:47:49 +00:00
dofile(modpath.."/worldgen.lua")