medieval/init.lua

19 lines
444 B
Lua
Raw Normal View History

2016-09-11 05:27:58 -07:00
2016-06-28 12:31:10 -07:00
2016-07-19 12:42:34 -07:00
local MODPATH = minetest.get_modpath("medieval")
medieval = {}
2016-06-28 12:31:10 -07:00
2016-07-19 12:42:34 -07:00
--formspec background
medieval.formbg = (default.gui_bg or "")..
(default.gui_bg_img or "")..
(default.gui_slots or "")
2016-06-28 12:31:10 -07:00
2016-07-19 12:42:34 -07:00
-- Load other files --
2016-06-28 12:31:10 -07:00
2016-07-19 12:42:34 -07:00
dofile(MODPATH.."/mod_files/coloured_glass.lua")
dofile(MODPATH.."/mod_files/bars_and_plaster.lua")
dofile(MODPATH.."/mod_files/medieval_tools.lua")
dofile(MODPATH.."/mod_files/nodes.lua")
dofile(MODPATH.."/mod_files/signs.lua")