36 lines
		
	
	
	
		
			1.4 KiB
		
	
	
	
		
			Java
		
	
	
	
	
	
			
		
		
	
	
			36 lines
		
	
	
	
		
			1.4 KiB
		
	
	
	
		
			Java
		
	
	
	
	
	
| package net.minecraft.util.datafix.schemas;
 | |
| 
 | |
| import com.mojang.datafixers.DSL;
 | |
| import com.mojang.datafixers.schemas.Schema;
 | |
| import com.mojang.datafixers.types.templates.TypeTemplate;
 | |
| import com.mojang.datafixers.util.Pair;
 | |
| import java.util.Map;
 | |
| import java.util.function.Supplier;
 | |
| import net.minecraft.util.datafix.fixes.References;
 | |
| 
 | |
| public class V4312 extends NamespacedSchema {
 | |
| 	public V4312(int versionKey, Schema parent) {
 | |
| 		super(versionKey, parent);
 | |
| 	}
 | |
| 
 | |
| 	@Override
 | |
| 	public void registerTypes(Schema schema, Map<String, Supplier<TypeTemplate>> map, Map<String, Supplier<TypeTemplate>> map2) {
 | |
| 		super.registerTypes(schema, map, map2);
 | |
| 		schema.registerType(
 | |
| 			false,
 | |
| 			References.PLAYER,
 | |
| 			() -> DSL.and(
 | |
| 				References.ENTITY_EQUIPMENT.in(schema),
 | |
| 				DSL.optionalFields(
 | |
| 					Pair.of("RootVehicle", DSL.optionalFields("Entity", References.ENTITY_TREE.in(schema))),
 | |
| 					Pair.of("ender_pearls", DSL.list(References.ENTITY_TREE.in(schema))),
 | |
| 					Pair.of("Inventory", DSL.list(References.ITEM_STACK.in(schema))),
 | |
| 					Pair.of("EnderItems", DSL.list(References.ITEM_STACK.in(schema))),
 | |
| 					Pair.of("ShoulderEntityLeft", References.ENTITY_TREE.in(schema)),
 | |
| 					Pair.of("ShoulderEntityRight", References.ENTITY_TREE.in(schema)),
 | |
| 					Pair.of("recipeBook", DSL.optionalFields("recipes", DSL.list(References.RECIPE.in(schema)), "toBeDisplayed", DSL.list(References.RECIPE.in(schema))))
 | |
| 				)
 | |
| 			)
 | |
| 		);
 | |
| 	}
 | |
| }
 |