Fix zombie_villager textures

This commit is contained in:
Matthew Messinger 2016-10-27 19:42:35 -04:00
parent 65e91b6650
commit ab982a4125
9 changed files with 5 additions and 3 deletions

View file

@ -26,7 +26,7 @@ apply plugin: 'org.spongepowered.mixin'
apply plugin: 'mnm.gradle.ap-ide'
group = 'com.brohoof.minelp'
version = '1.10.2.3'
version = '1.10.2.4'
description = 'Mine Little Pony'
minecraft {

View file

@ -1,3 +1,3 @@
#Build Number for ANT. Do not edit!
#Sat Oct 08 22:49:55 EDT 2016
build.number=252
#Thu Oct 27 19:41:55 EDT 2016
build.number=253

View file

@ -30,6 +30,8 @@ public class ImageLoader implements Callable<ResourceLocation> {
public ResourceLocation call() throws Exception {
BufferedImage image = getImage(original);
final BufferedImage updated = new ImageBufferDownloadHD().parseUserSkin(image);
if (updated == null)
return null;
return this.mc.addScheduledTask(new Callable<ResourceLocation>() {
@Override