mirror of
https://github.com/libraryaddict/LibsDisguises.git
synced 2024-11-05 09:09:40 +01:00
Fix Horse not being found in old versions
This commit is contained in:
parent
4b06deec1b
commit
572d94219d
@ -143,7 +143,6 @@ public enum DisguiseType {
|
||||
// Without erroring up everything.
|
||||
for (DisguiseType type : values()) {
|
||||
try {
|
||||
EntityType entityType = null;
|
||||
switch (type) {
|
||||
// Disguise item frame isn't supported. So we don't give it a entity type which should prevent it from being..
|
||||
// Usable.
|
||||
@ -153,18 +152,18 @@ public enum DisguiseType {
|
||||
case MULE:
|
||||
case UNDEAD_HORSE:
|
||||
case SKELETON_HORSE:
|
||||
entityType = EntityType.HORSE;
|
||||
type = DisguiseType.HORSE;
|
||||
break;
|
||||
case ZOMBIE_VILLAGER:
|
||||
entityType = EntityType.ZOMBIE;
|
||||
type = DisguiseType.ZOMBIE;
|
||||
break;
|
||||
case WITHER_SKELETON:
|
||||
entityType = EntityType.SKELETON;
|
||||
type = DisguiseType.SKELETON;
|
||||
break;
|
||||
default:
|
||||
entityType = EntityType.valueOf(type.name());
|
||||
break;
|
||||
}
|
||||
EntityType entityType = EntityType.valueOf(type.name());
|
||||
if (entityType != null) {
|
||||
type.setEntityType(entityType);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user