digtron/init.lua

16 lines
440 B
Lua
Raw Normal View History

digtron = {}
digtron.doc = {}
digtron.config = {}
digtron.config.marker_crate_bad_duration = 5
digtron.config.marker_crate_good_duration = 5
local modpath = minetest.get_modpath(minetest.get_current_modname())
dofile(modpath.."/entities.lua")
dofile(modpath.."/functions.lua")
dofile(modpath.."/controller.lua")
dofile(modpath.."/nodes/node_misc.lua")
2019-08-21 09:21:03 +02:00
dofile(modpath.."/nodes/node_storage.lua")
dofile(modpath.."/nodes/node_digger.lua")