mirror of
https://github.com/sys4-fr/server-nalc.git
synced 2024-11-04 17:40:26 +01:00
19 lines
333 B
Lua
Executable File
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")
|