20 lines
645 B
Java
20 lines
645 B
Java
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 V701 extends Schema {
|
|
public V701(int p_17996_, Schema p_17997_) {
|
|
super(p_17996_, p_17997_);
|
|
}
|
|
|
|
@Override
|
|
public Map<String, Supplier<TypeTemplate>> registerEntities(Schema p_18005_) {
|
|
Map<String, Supplier<TypeTemplate>> map = super.registerEntities(p_18005_);
|
|
p_18005_.registerSimple(map, "WitherSkeleton");
|
|
p_18005_.registerSimple(map, "Stray");
|
|
return map;
|
|
}
|
|
} |