mirror of
				https://github.com/luanti-org/luanti.git
				synced 2025-10-31 15:35:21 +01:00 
			
		
		
		
	Co-authored-by: sfan5 <sfan5@live.de> Co-authored-by: SmallJoker <SmallJoker@users.noreply.github.com>
		
			
				
	
	
		
			13 lines
		
	
	
		
			452 B
		
	
	
	
		
			Lua
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			452 B
		
	
	
	
		
			Lua
		
	
	
	
	
	
| -- Minetest: builtin/client/init.lua
 | |
| local scriptpath = core.get_builtin_path()
 | |
| local clientpath = scriptpath.."client"..DIR_DELIM
 | |
| local commonpath = scriptpath.."common"..DIR_DELIM
 | |
| 
 | |
| dofile(clientpath .. "register.lua")
 | |
| dofile(commonpath .. "after.lua")
 | |
| dofile(commonpath .. "mod_storage.lua")
 | |
| dofile(commonpath .. "chatcommands.lua")
 | |
| dofile(clientpath .. "chatcommands.lua")
 | |
| dofile(clientpath .. "death_formspec.lua")
 | |
| dofile(clientpath .. "misc.lua")
 |