mylandscaping/init.lua

20 lines
842 B
Lua
Raw Normal View History

2019-02-16 14:47:56 -08:00
mylandscaping = {}
if minetest.settings:get_bool('mylandscaping.creative') then
ml_visible = 0
else
ml_visible = 1
end
2015-04-26 14:38:21 -07:00
--Load File
dofile(minetest.get_modpath('mylandscaping')..'/walls_freeport.lua')
2016-06-20 18:11:08 -07:00
dofile(minetest.get_modpath('mylandscaping')..'/walls_madison.lua')
dofile(minetest.get_modpath('mylandscaping')..'/walls_adaridge.lua')
2015-09-27 13:35:44 -07:00
dofile(minetest.get_modpath('mylandscaping')..'/walls_deco.lua')
2015-04-27 10:31:29 -07:00
dofile(minetest.get_modpath('mylandscaping')..'/stones.lua')
dofile(minetest.get_modpath('mylandscaping')..'/recipes.lua')
2019-02-16 14:47:56 -08:00
dofile(minetest.get_modpath('mylandscaping')..'/machine.lua')
dofile(minetest.get_modpath('mylandscaping')..'/mixer.lua')
dofile(minetest.get_modpath('mylandscaping')..'/concrete.lua')
dofile(minetest.get_modpath('mylandscaping')..'/formspec.lua')
2015-09-27 17:19:46 -07:00
dofile(minetest.get_modpath('mylandscaping')..'/toppers.lua')