mirror of
				https://github.com/SquidDev-CC/CC-Tweaked
				synced 2025-11-03 23:22:59 +00:00 
			
		
		
		
	
		
			
				
	
	
	
		
			286 B
		
	
	
	
	
	
	
	
			
		
		
	
	
			286 B
		
	
	
	
	
	
	
	
			
				module: [kind=event] turtle_inventory
			
		
	The @{turtle_inventory} event is fired when a turtle's inventory is changed.
Example
Prints a message when the inventory is changed:
while true do
  os.pullEvent("turtle_inventory")
  print("The inventory was changed.")
end