mirror of
https://github.com/sys4-fr/server-nalc.git
synced 2024-11-03 17:10:27 +01:00
01c6adb660
- Added amulets' API - Added some amulets
19 lines
333 B
Lua
19 lines
333 B
Lua
-- 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")
|