Fixed remote skin preview not correctly detecting thin arm types

This commit is contained in:
Sollace 2018-10-31 12:52:20 +02:00
parent 3db1965da4
commit 26fb289be1

View file

@ -40,6 +40,6 @@ public class PreviewTexture extends ThreadDownloadImageData {
}
public boolean usesThinArms() {
return "thin".equals(model);
return "slim".equals(model);
}
}