forked from nalc/death_messages
		
	
		
			
				
	
	
		
			36 lines
		
	
	
		
			422 B
		
	
	
	
		
			Lua
		
	
	
	
	
	
			
		
		
	
	
			36 lines
		
	
	
		
			422 B
		
	
	
	
		
			Lua
		
	
	
	
	
	
| read_globals = {
 | |
| 	"DIR_DELIM",
 | |
| 	"minetest", "core",
 | |
| 	"dump", "dump2",
 | |
| 	"vector",
 | |
| 	"VoxelManip", "VoxelArea",
 | |
| 	"PseudoRandom", "PcgRandom",
 | |
| 	"ItemStack",
 | |
| 	"Settings",
 | |
| 	"unpack",
 | |
| 
 | |
| 	table = {
 | |
| 		fields = {
 | |
| 			"copy",
 | |
| 			"indexof",
 | |
| 			"insert_all",
 | |
| 			"key_value_swap",
 | |
| 		}
 | |
| 	},
 | |
| 
 | |
| 	string = {
 | |
| 		fields = {
 | |
| 			"split",
 | |
| 			"trim",
 | |
| 		}
 | |
| 	},
 | |
| 
 | |
| 	math = {
 | |
| 		fields = {
 | |
| 			"hypot",
 | |
| 			"sign",
 | |
| 			"factorial"
 | |
| 		}
 | |
| 	},
 | |
| }
 | |
| max_line_length = 80 |