36 lines
1.1 KiB
Java
36 lines
1.1 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 java.util.Map;
|
|
import java.util.function.Supplier;
|
|
import net.minecraft.util.datafix.fixes.References;
|
|
|
|
public class V135 extends Schema {
|
|
public V135(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.optionalFields(
|
|
"RootVehicle",
|
|
DSL.optionalFields("Entity", References.ENTITY_TREE.in(schema)),
|
|
"ender_pearls",
|
|
DSL.list(References.ENTITY_TREE.in(schema)),
|
|
"Inventory",
|
|
DSL.list(References.ITEM_STACK.in(schema)),
|
|
"EnderItems",
|
|
DSL.list(References.ITEM_STACK.in(schema))
|
|
)
|
|
);
|
|
schema.registerType(
|
|
true, References.ENTITY_TREE, () -> DSL.optionalFields("Passengers", DSL.list(References.ENTITY_TREE.in(schema)), References.ENTITY.in(schema))
|
|
);
|
|
}
|
|
}
|