30 lines
868 B
Java
30 lines
868 B
Java
/*
|
|
* Decompiled with CFR 0.152.
|
|
*
|
|
* Could not load the following classes:
|
|
* com.mojang.datafixers.schemas.Schema
|
|
* com.mojang.datafixers.types.templates.TypeTemplate
|
|
*/
|
|
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;
|
|
import net.minecraft.util.datafix.schemas.NamespacedSchema;
|
|
import net.minecraft.util.datafix.schemas.V99;
|
|
|
|
public class V3202
|
|
extends NamespacedSchema {
|
|
public V3202(int versionKey, Schema parent) {
|
|
super(versionKey, parent);
|
|
}
|
|
|
|
public Map<String, Supplier<TypeTemplate>> registerBlockEntities(Schema schema) {
|
|
Map map = super.registerBlockEntities(schema);
|
|
map.put("minecraft:hanging_sign", () -> V99.sign(schema));
|
|
return map;
|
|
}
|
|
}
|
|
|