2018-12-12 15:04:53 +02:00
|
|
|
-- An Elepower Mod
|
2018-06-18 10:09:43 +03: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 22:10:07 +03:00
|
|
|
dofile(modpath.."/treecutter.lua")
|
2018-06-19 21:08:28 +03:00
|
|
|
dofile(modpath.."/craftitems.lua")
|
2018-08-12 18:05:39 +03:00
|
|
|
dofile(modpath.."/nodes.lua")
|
2018-08-30 23:14:50 +03:00
|
|
|
dofile(modpath.."/fluids.lua")
|
2018-08-12 18:05:39 +03:00
|
|
|
dofile(modpath.."/machines/init.lua")
|
2018-06-21 11:09:01 +03:00
|
|
|
dofile(modpath.."/crafting.lua")
|