forked from mtcontrib/pipeworks
		
	* mcl_barrels compat * open barrel is not in creative inv * fix barrel drop content after dig * fix barrel local var * mcl_furnaces compat * optional depends mcl_barrels and mcl_furnaces * fixing luacheck * .luacheckrc update * renamed files to use _ * renamed files to init.lua * format improvement
		
			
				
	
	
		
			26 lines
		
	
	
		
			406 B
		
	
	
	
		
			Lua
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
		
			406 B
		
	
	
	
		
			Lua
		
	
	
	
	
	
unused_args = false
 | 
						|
max_line_length= 240
 | 
						|
redefined = false
 | 
						|
 | 
						|
globals = {
 | 
						|
	"pipeworks",
 | 
						|
	"luaentity"
 | 
						|
}
 | 
						|
 | 
						|
read_globals = {
 | 
						|
	-- Stdlib
 | 
						|
	string = {fields = {"split"}},
 | 
						|
	table = {fields = {"copy", "getn"}},
 | 
						|
 | 
						|
	-- Minetest
 | 
						|
	"vector", "ItemStack",
 | 
						|
	"dump", "minetest",
 | 
						|
	"VoxelManip", "VoxelArea",
 | 
						|
 | 
						|
	-- mods
 | 
						|
	"default", "mesecon", "digiline",
 | 
						|
	"screwdriver", "unified_inventory",
 | 
						|
	"i3", "mcl_experience", "awards"
 | 
						|
 | 
						|
}
 |