30 lines
		
	
	
	
		
			1 KiB
		
	
	
	
		
			Java
		
	
	
	
	
	
			
		
		
	
	
			30 lines
		
	
	
	
		
			1 KiB
		
	
	
	
		
			Java
		
	
	
	
	
	
| package net.minecraft.network.chat.contents;
 | |
| 
 | |
| import com.mojang.serialization.MapCodec;
 | |
| import com.mojang.serialization.codecs.RecordCodecBuilder;
 | |
| import java.util.stream.Stream;
 | |
| import net.minecraft.commands.CommandSourceStack;
 | |
| import net.minecraft.nbt.CompoundTag;
 | |
| import net.minecraft.resources.ResourceLocation;
 | |
| 
 | |
| public record StorageDataSource(ResourceLocation id) implements DataSource {
 | |
| 	public static final MapCodec<StorageDataSource> SUB_CODEC = RecordCodecBuilder.mapCodec(
 | |
| 		instance -> instance.group(ResourceLocation.CODEC.fieldOf("storage").forGetter(StorageDataSource::id)).apply(instance, StorageDataSource::new)
 | |
| 	);
 | |
| 	public static final DataSource.Type<StorageDataSource> TYPE = new DataSource.Type<>(SUB_CODEC, "storage");
 | |
| 
 | |
| 	@Override
 | |
| 	public Stream<CompoundTag> getData(CommandSourceStack source) {
 | |
| 		CompoundTag compoundTag = source.getServer().getCommandStorage().get(this.id);
 | |
| 		return Stream.of(compoundTag);
 | |
| 	}
 | |
| 
 | |
| 	@Override
 | |
| 	public DataSource.Type<?> type() {
 | |
| 		return TYPE;
 | |
| 	}
 | |
| 
 | |
| 	public String toString() {
 | |
| 		return "storage=" + this.id;
 | |
| 	}
 | |
| }
 |