runes/init.lua

29 lines
481 B
Lua
Executable File

-- Rune mod by Mg
-- License GPLv3
local modpath = minetest.get_modpath("runes")
runes = {}
-- API first
dofile(modpath.."/api.lua")
-- Then the rune themselves
dofile(modpath.."/registration.lua")
-- The handlers
dofile(modpath.."/handlers.lua")
-- The amulets
dofile(modpath.."/amulets.lua")
---- From this point everything is redo ----
-- Stylus
dofile(modpath .. "/glyphs.lua")
-- Scrolls
dofile(modpath .. "/scrolls.lua")
minetest.log("action","[runes] Mod loaded")