29 lines
881 B
Java
29 lines
881 B
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 V2831 extends NamespacedSchema {
|
|
public V2831(int i, Schema schema) {
|
|
super(i, schema);
|
|
}
|
|
|
|
@Override
|
|
public void registerTypes(Schema schema, Map<String, Supplier<TypeTemplate>> map, Map<String, Supplier<TypeTemplate>> map2) {
|
|
super.registerTypes(schema, map, map2);
|
|
schema.registerType(
|
|
true,
|
|
References.UNTAGGED_SPAWNER,
|
|
() -> DSL.optionalFields(
|
|
"SpawnPotentials",
|
|
DSL.list(DSL.fields("data", DSL.fields("entity", References.ENTITY_TREE.in(schema)))),
|
|
"SpawnData",
|
|
DSL.fields("entity", References.ENTITY_TREE.in(schema))
|
|
)
|
|
);
|
|
}
|
|
}
|