25 lines
		
	
	
	
		
			911 B
		
	
	
	
		
			Java
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
	
		
			911 B
		
	
	
	
		
			Java
		
	
	
	
	
	
| package net.minecraft.server.packs.repository;
 | |
| 
 | |
| import io.netty.buffer.ByteBuf;
 | |
| import net.minecraft.SharedConstants;
 | |
| import net.minecraft.network.codec.ByteBufCodecs;
 | |
| import net.minecraft.network.codec.StreamCodec;
 | |
| 
 | |
| public record KnownPack(String namespace, String id, String version) {
 | |
| 	public static final StreamCodec<ByteBuf, KnownPack> STREAM_CODEC = StreamCodec.composite(
 | |
| 		ByteBufCodecs.STRING_UTF8, KnownPack::namespace, ByteBufCodecs.STRING_UTF8, KnownPack::id, ByteBufCodecs.STRING_UTF8, KnownPack::version, KnownPack::new
 | |
| 	);
 | |
| 	public static final String VANILLA_NAMESPACE = "minecraft";
 | |
| 
 | |
| 	public static KnownPack vanilla(String name) {
 | |
| 		return new KnownPack("minecraft", name, SharedConstants.getCurrentVersion().id());
 | |
| 	}
 | |
| 
 | |
| 	public boolean isVanilla() {
 | |
| 		return this.namespace.equals("minecraft");
 | |
| 	}
 | |
| 
 | |
| 	public String toString() {
 | |
| 		return this.namespace + ":" + this.id + ":" + this.version;
 | |
| 	}
 | |
| }
 |