Added a check for UltimateCatcher.

This commit is contained in:
Steven Conley 2020-01-15 20:47:11 -06:00
parent dc783eaf8a
commit 906f13405f

View File

@ -2166,6 +2166,11 @@ public enum CompatibleMaterial {
if(type == EntityType.MUSHROOM_COW) {
return MOOSHROOM_SPAWN_EGG;
}
if (type == EntityType.PIG_ZOMBIE) {
return ZOMBIE_PIGMAN_SPAWN_EGG;
}
return lookupMap.get(type.name() + "_SPAWN_EGG");
}