Fix for skeleton type issue.

This commit is contained in:
Brianna 2019-08-12 07:55:20 -04:00
parent 3d74649afd
commit 548a893d41

View File

@ -109,7 +109,7 @@ public class EntityUtils {
}
case SKELETON_TYPE: {
if (!(toClone instanceof Skeleton)
|| plugin.isServerVersionAtLeast(ServerVersion.V1_12)) break;
|| plugin.isServerVersionAtLeast(ServerVersion.V1_11)) break;
((Skeleton) newEntity).setSkeletonType(((Skeleton) toClone).getSkeletonType());
break;
}