Added files for base
This commit is contained in:
parent
09bc237464
commit
255dd84737
9 changed files with 11 additions and 11 deletions
0
abm.lua
Normal file
0
abm.lua
Normal file
0
cooking.lua
Normal file
0
cooking.lua
Normal file
0
craft_items.lua
Normal file
0
craft_items.lua
Normal file
0
fuels.lua
Normal file
0
fuels.lua
Normal file
0
functions.lua
Normal file
0
functions.lua
Normal file
22
init.lua
22
init.lua
|
@ -1,34 +1,34 @@
|
|||
techrunner_mod = {}
|
||||
aether-2_minetest = {}
|
||||
|
||||
--Load File
|
||||
dofile(minetest.get_modpath("techrunner_mod") .. "/config.txt")
|
||||
dofile(minetest.get_modpath("aether-2_minetest") .. "/config.txt")
|
||||
|
||||
if run_ABM then
|
||||
dofile(minetest.get_modpath('techrunner_mod')..'/abm.lua')
|
||||
dofile(minetest.get_modpath('aether-2_minetest')..'/abm.lua')
|
||||
end
|
||||
if enable_mobs then
|
||||
dofile(minetest.get_modpath('techrunner_mod')..'/mobs.lua')
|
||||
dofile(minetest.get_modpath('aether-2_minetest')..'/mobs.lua')
|
||||
end
|
||||
if enable_crafting then
|
||||
dofile(minetest.get_modpath('techrunner_mod')..'/crafting.lua')
|
||||
dofile(minetest.get_modpath('aether-2_minetest')..'/crafting.lua')
|
||||
end
|
||||
if enable_nodes then
|
||||
dofile(minetest.get_modpath('techrunner_mod')..'/nodes.lua')
|
||||
dofile(minetest.get_modpath('aether-2_minetest')..'/nodes.lua')
|
||||
end
|
||||
if enable_cooking then
|
||||
dofile(minetest.get_modpath('techrunner_mod')..'/cooking.lua')
|
||||
dofile(minetest.get_modpath('aether-2_minetest')..'/cooking.lua')
|
||||
end
|
||||
if enable_items then
|
||||
dofile(minetest.get_modpath('techrunner_mod')..'/craft_items.lua')
|
||||
dofile(minetest.get_modpath('aether-2_minetest')..'/craft_items.lua')
|
||||
end
|
||||
if enable_fuels then
|
||||
dofile(minetest.get_modpath('techrunner_mod')..'/fuels.lua')
|
||||
dofile(minetest.get_modpath('aether-2_minetest')..'/fuels.lua')
|
||||
end
|
||||
if enable_tools then
|
||||
dofile(minetest.get_modpath('techrunner_mod')..'/tools.lua')
|
||||
dofile(minetest.get_modpath('aether-2_minetest')..'/tools.lua')
|
||||
end
|
||||
if enable_functions then
|
||||
dofile(minetest.get_modpath('techrunner_mod')..'/functions.lua')
|
||||
dofile(minetest.get_modpath('aether-2_minetest')..'/functions.lua')
|
||||
end
|
||||
|
||||
|
||||
|
|
0
mobs.lua
Normal file
0
mobs.lua
Normal file
0
nodes.lua
Normal file
0
nodes.lua
Normal file
0
tools.lua
Normal file
0
tools.lua
Normal file
Loading…
Reference in a new issue