mirror of
https://github.com/sirrobzeroone/elepower.git
synced 2024-11-05 06:43:51 +01:00
15 lines
417 B
Lua
15 lines
417 B
Lua
-- An Elepower Mod
|
|
-- 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
|
|
|
|
dofile(modpath.."/treecutter.lua")
|
|
dofile(modpath.."/craftitems.lua")
|
|
dofile(modpath.."/nodes.lua")
|
|
dofile(modpath.."/fluids.lua")
|
|
dofile(modpath.."/machines/init.lua")
|
|
dofile(modpath.."/crafting.lua")
|