mirror of
https://github.com/sys4-fr/server-nalc.git
synced 2025-07-18 07:30:24 +02:00
Added base of runes mod
- Added rune API's first implementation - Added basic cubic runes in solarmana
This commit is contained in:
15
mods/runes/init.lua
Normal file
15
mods/runes/init.lua
Normal file
@ -0,0 +1,15 @@
|
||||
-- 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")
|
||||
|
||||
-- And the handlers
|
||||
dofile(modpath.."/handlers.lua")
|
||||
|
||||
minetest.log("action","[runes] Mod loaded")
|
Reference in New Issue
Block a user