minecraft-src/net/minecraft/util/datafix/schemas/V135.java
2025-07-04 02:00:41 +03:00

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))
);
}
}