2015-04-23 18:04:58 +02:00
|
|
|
-- Rune mod by Mg
|
|
|
|
-- License GPLv3
|
|
|
|
|
|
|
|
local modpath = minetest.get_modpath("runes")
|
|
|
|
|
2016-03-14 21:14:58 +01:00
|
|
|
runes = {}
|
|
|
|
|
2015-04-23 18:04:58 +02:00
|
|
|
-- API first
|
|
|
|
dofile(modpath.."/api.lua")
|
|
|
|
|
|
|
|
-- Then the rune themselves
|
|
|
|
dofile(modpath.."/registration.lua")
|
|
|
|
|
2015-04-27 15:29:47 +02:00
|
|
|
-- The handlers
|
2015-04-23 18:04:58 +02:00
|
|
|
dofile(modpath.."/handlers.lua")
|
|
|
|
|
2015-04-27 15:29:47 +02:00
|
|
|
-- The amulets
|
|
|
|
dofile(modpath.."/amulets.lua")
|
|
|
|
|
2016-03-14 21:14:58 +01:00
|
|
|
---- From this point everything is redo ----
|
|
|
|
|
|
|
|
-- Stylus
|
|
|
|
dofile(modpath .. "/glyphs.lua")
|
|
|
|
|
|
|
|
-- Scrolls
|
|
|
|
dofile(modpath .. "/scrolls.lua")
|
|
|
|
|
2015-04-23 18:04:58 +02:00
|
|
|
minetest.log("action","[runes] Mod loaded")
|