1
0
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:
LeMagnesium
2015-04-23 18:04:58 +02:00
parent 19374b7057
commit af3bb78c3f
7 changed files with 252 additions and 1 deletions

15
mods/runes/init.lua Normal file
View 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")