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 V3689 extends NamespacedSchema { public V3689(int i, Schema schema) { super(i, schema); } @Override public Map> registerEntities(Schema schema) { Map> map = super.registerEntities(schema); schema.registerSimple(map, "minecraft:breeze"); schema.registerSimple(map, "minecraft:wind_charge"); schema.registerSimple(map, "minecraft:breeze_wind_charge"); return map; } @Override public Map> registerBlockEntities(Schema schema) { Map> map = super.registerBlockEntities(schema); schema.register( map, "minecraft:trial_spawner", (Supplier)(() -> DSL.optionalFields( "spawn_potentials", DSL.list(DSL.fields("data", DSL.fields("entity", References.ENTITY_TREE.in(schema)))), "spawn_data", DSL.fields("entity", References.ENTITY_TREE.in(schema)) )) ); return map; } }