mirror of
https://github.com/sys4-fr/server-nalc.git
synced 2024-11-07 19:10:23 +01:00
af3bb78c3f
- Added rune API's first implementation - Added basic cubic runes in solarmana
16 lines
289 B
Lua
16 lines
289 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")
|
|
|
|
-- And the handlers
|
|
dofile(modpath.."/handlers.lua")
|
|
|
|
minetest.log("action","[runes] Mod loaded")
|