minecraft-src/net/minecraft/util/datafix/schemas/V4067.java
2025-07-04 03:15:13 +03:00

44 lines
1.8 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 V4067 extends NamespacedSchema {
public V4067(int i, Schema schema) {
super(i, schema);
}
@Override
public Map<String, Supplier<TypeTemplate>> registerEntities(Schema schema) {
Map<String, Supplier<TypeTemplate>> map = super.registerEntities(schema);
map.remove("minecraft:boat");
map.remove("minecraft:chest_boat");
this.registerSimple(map, "minecraft:oak_boat");
this.registerSimple(map, "minecraft:spruce_boat");
this.registerSimple(map, "minecraft:birch_boat");
this.registerSimple(map, "minecraft:jungle_boat");
this.registerSimple(map, "minecraft:acacia_boat");
this.registerSimple(map, "minecraft:cherry_boat");
this.registerSimple(map, "minecraft:dark_oak_boat");
this.registerSimple(map, "minecraft:mangrove_boat");
this.registerSimple(map, "minecraft:bamboo_raft");
this.registerChestBoat(map, "minecraft:oak_chest_boat");
this.registerChestBoat(map, "minecraft:spruce_chest_boat");
this.registerChestBoat(map, "minecraft:birch_chest_boat");
this.registerChestBoat(map, "minecraft:jungle_chest_boat");
this.registerChestBoat(map, "minecraft:acacia_chest_boat");
this.registerChestBoat(map, "minecraft:cherry_chest_boat");
this.registerChestBoat(map, "minecraft:dark_oak_chest_boat");
this.registerChestBoat(map, "minecraft:mangrove_chest_boat");
this.registerChestBoat(map, "minecraft:bamboo_chest_raft");
return map;
}
private void registerChestBoat(Map<String, Supplier<TypeTemplate>> map, String name) {
this.register(map, name, string -> DSL.optionalFields("Items", DSL.list(References.ITEM_STACK.in(this))));
}
}