12 lines
		
	
	
	
		
			366 B
		
	
	
	
		
			Java
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
	
		
			366 B
		
	
	
	
		
			Java
		
	
	
	
	
	
| package net.minecraft.network;
 | |
| 
 | |
| import java.net.URI;
 | |
| import java.nio.file.Path;
 | |
| import java.util.Optional;
 | |
| import net.minecraft.network.chat.Component;
 | |
| 
 | |
| public record DisconnectionDetails(Component reason, Optional<Path> report, Optional<URI> bugReportLink) {
 | |
| 	public DisconnectionDetails(Component reason) {
 | |
| 		this(reason, Optional.empty(), Optional.empty());
 | |
| 	}
 | |
| }
 |