2018-12-12 14:04:53 +01:00
|
|
|
-- An Elepower Mod
|
2018-06-18 09:09:43 +02:00
|
|
|
-- Copyright 2018 Evert "Diamond" Prants <evert@lunasqu.ee>
|
|
|
|
|
|
|
|
local modpath = minetest.get_modpath(minetest.get_current_modname())
|
|
|
|
|
|
|
|
elefarm = rawget(_G, "elefarm") or {}
|
|
|
|
elefarm.modpath = modpath
|
|
|
|
|
2018-08-04 21:10:07 +02:00
|
|
|
dofile(modpath.."/treecutter.lua")
|
2018-06-19 20:08:28 +02:00
|
|
|
dofile(modpath.."/craftitems.lua")
|
2018-08-12 17:05:39 +02:00
|
|
|
dofile(modpath.."/nodes.lua")
|
2018-08-30 22:14:50 +02:00
|
|
|
dofile(modpath.."/fluids.lua")
|
2018-08-12 17:05:39 +02:00
|
|
|
dofile(modpath.."/machines/init.lua")
|
2018-06-21 10:09:01 +02:00
|
|
|
dofile(modpath.."/crafting.lua")
|