19 lines
619 B
Java
19 lines
619 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 V1801 extends NamespacedSchema {
|
||
|
public V1801(int p_17746_, Schema p_17747_) {
|
||
|
super(p_17746_, p_17747_);
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
public Map<String, Supplier<TypeTemplate>> registerEntities(Schema p_17755_) {
|
||
|
Map<String, Supplier<TypeTemplate>> map = super.registerEntities(p_17755_);
|
||
|
p_17755_.registerSimple(map, "minecraft:illager_beast");
|
||
|
return map;
|
||
|
}
|
||
|
}
|