mt_village_set/init.lua

17 lines
517 B
Lua
Raw Normal View History

2020-10-03 06:53:36 -07:00
-- MT_Buildings by Steamed_Punk (CC BY-NC 3.0)
local path = minetest.get_modpath("mt_buildings")
-- Load support for intllib.
local MP = minetest.get_modpath(minetest.get_current_modname())
local S, NS = dofile(MP.."/intllib.lua")
-- MT_Buildings
2020-10-12 12:18:29 -07:00
dofile(path .. "/streetlight.lua") -- Steamed_Punk
dofile(path .. "/nodes_invisible_walls.lua")
2020-10-03 06:53:36 -07:00
dofile(path .. "/huts.lua") -- Steamed_Punk
2020-10-12 12:18:29 -07:00
dofile(path .. "/well.lua") -- Steamed_Punk
dofile(path .. "/organic.lua") -- Steamed_Punk
2020-10-03 06:53:36 -07:00
print (S("[MOD] Huts are loaded"))