33 lines
1.3 KiB
Java
33 lines
1.3 KiB
Java
/*
|
|
* Decompiled with CFR 0.152.
|
|
*
|
|
* Could not load the following classes:
|
|
* com.mojang.datafixers.DSL
|
|
* com.mojang.datafixers.schemas.Schema
|
|
* com.mojang.datafixers.types.templates.TypeTemplate
|
|
*/
|
|
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;
|
|
import net.minecraft.util.datafix.schemas.NamespacedSchema;
|
|
|
|
public class V4302
|
|
extends NamespacedSchema {
|
|
public V4302(int versionKey, Schema parent) {
|
|
super(versionKey, parent);
|
|
}
|
|
|
|
public Map<String, Supplier<TypeTemplate>> registerBlockEntities(Schema schema) {
|
|
Map map = super.registerBlockEntities(schema);
|
|
schema.registerSimple(map, "minecraft:test_block");
|
|
schema.register(map, "minecraft:test_instance_block", () -> DSL.optionalFields((String)"data", (TypeTemplate)DSL.optionalFields((String)"error_message", (TypeTemplate)References.TEXT_COMPONENT.in(schema)), (String)"errors", (TypeTemplate)DSL.list((TypeTemplate)DSL.optionalFields((String)"text", (TypeTemplate)References.TEXT_COMPONENT.in(schema)))));
|
|
return map;
|
|
}
|
|
}
|
|
|