2018-12-12 13:04:53 +00:00
|
|
|
-- An Elepower Mod
|
2018-08-01 14:41:01 +00:00
|
|
|
-- Copyright 2018 Evert "Diamond" Prants <evert@lunasqu.ee>
|
|
|
|
|
|
|
|
local modpath = minetest.get_modpath(minetest.get_current_modname())
|
|
|
|
|
|
|
|
elewi = rawget(_G, "elewi") or {}
|
|
|
|
elewi.modpath = modpath
|
|
|
|
|
|
|
|
-- Items
|
|
|
|
dofile(modpath .. "/craftitems.lua")
|
|
|
|
|
|
|
|
-- Machines
|
|
|
|
dofile(modpath .. "/machines/init.lua")
|
|
|
|
|
|
|
|
-- Crafting
|
|
|
|
dofile(modpath .. "/crafting.lua")
|