19 lines
		
	
	
	
		
			579 B
		
	
	
	
		
			Java
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
	
		
			579 B
		
	
	
	
		
			Java
		
	
	
	
	
	
| package net.minecraft.util.datafix.schemas;
 | |
| 
 | |
| import com.mojang.datafixers.schemas.Schema;
 | |
| import com.mojang.datafixers.types.templates.TypeTemplate;
 | |
| import java.util.Map;
 | |
| import java.util.function.Supplier;
 | |
| 
 | |
| public class V1481 extends NamespacedSchema {
 | |
| 	public V1481(int versionKey, Schema parent) {
 | |
| 		super(versionKey, parent);
 | |
| 	}
 | |
| 
 | |
| 	@Override
 | |
| 	public Map<String, Supplier<TypeTemplate>> registerBlockEntities(Schema schema) {
 | |
| 		Map<String, Supplier<TypeTemplate>> map = super.registerBlockEntities(schema);
 | |
| 		schema.registerSimple(map, "minecraft:conduit");
 | |
| 		return map;
 | |
| 	}
 | |
| }
 |