mirror of
				https://github.com/sys4-fr/server-nalc.git
				synced 2025-10-30 20:15:33 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			29 lines
		
	
	
		
			481 B
		
	
	
	
		
			Lua
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			29 lines
		
	
	
		
			481 B
		
	
	
	
		
			Lua
		
	
	
		
			Executable File
		
	
	
	
	
| -- Rune mod by Mg
 | |
| -- License GPLv3
 | |
| 
 | |
| local modpath = minetest.get_modpath("runes")
 | |
| 
 | |
| 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")
 | |
| 
 | |
| ---- From this point everything is redo ----
 | |
| 
 | |
| -- Stylus
 | |
| dofile(modpath .. "/glyphs.lua")
 | |
| 
 | |
| -- Scrolls
 | |
| dofile(modpath .. "/scrolls.lua")
 | |
| 
 | |
| minetest.log("action","[runes] Mod loaded")
 |