1
0
mirror of https://github.com/sys4-fr/server-nalc.git synced 2024-07-03 17:10:21 +02:00
server-nalc/mods/runes/init.lua
2015-05-26 23:37:16 +02:00

19 lines
333 B
Lua
Executable File

-- Rune mod by Mg
-- License GPLv3
local modpath = minetest.get_modpath("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")
minetest.log("action","[runes] Mod loaded")