soundblock/init.lua

38 lines
716 B
Lua
Raw Permalink Normal View History

2019-04-29 02:07:48 -07:00
2019-04-29 09:10:05 -07:00
soundblock = {
2019-04-29 02:07:48 -07:00
sounds = {}
}
2019-04-29 09:10:05 -07:00
local MP = minetest.get_modpath("soundblock")
2019-04-29 02:07:48 -07:00
dofile(MP.."/api.lua")
dofile(MP.."/form.lua")
dofile(MP.."/digiline.lua")
2019-04-29 02:07:48 -07:00
dofile(MP.."/soundblock.lua")
2019-11-23 10:20:12 -08:00
dofile(MP.."/recipe.lua")
2019-04-29 02:07:48 -07:00
if minetest.get_modpath("default") then
2019-04-29 04:05:08 -07:00
dofile(MP.."/mods/default.lua")
2019-04-29 03:55:15 -07:00
end
2019-12-19 23:05:42 -08:00
if minetest.get_modpath("horror") then
dofile(MP.."/mods/horror.lua")
end
2019-04-29 04:12:05 -07:00
if minetest.get_modpath("doors") then
dofile(MP.."/mods/doors.lua")
end
2019-04-29 03:55:15 -07:00
if minetest.get_modpath("technic") then
dofile(MP.."/mods/technic.lua")
2019-04-29 02:07:48 -07:00
end
2019-04-29 03:59:58 -07:00
if minetest.get_modpath("ambience") then
dofile(MP.."/mods/ambience.lua")
end
2019-04-29 04:02:03 -07:00
if minetest.get_modpath("mobs_monster") then
dofile(MP.."/mods/mobs_monster.lua")
end
2019-04-29 02:07:48 -07:00
2019-04-29 09:10:05 -07:00
print("[OK] soundblock")