Code/net/minecraft/util/datafix/schemas/V1451_5.java

20 lines
655 B
Java
Raw Permalink Normal View History

2025-07-01 06:20:03 +00:00
package net.minecraft.util.datafix.schemas;
import com.mojang.datafixers.schemas.Schema;
import com.mojang.datafixers.types.templates.TypeTemplate;
import java.util.Map;
import java.util.function.Supplier;
public class V1451_5 extends NamespacedSchema {
public V1451_5(int p_17527_, Schema p_17528_) {
super(p_17527_, p_17528_);
}
@Override
public Map<String, Supplier<TypeTemplate>> registerBlockEntities(Schema p_17530_) {
Map<String, Supplier<TypeTemplate>> map = super.registerBlockEntities(p_17530_);
map.remove("minecraft:flower_pot");
map.remove("minecraft:noteblock");
return map;
}
}