Fixed alex/steve arm types not being applied correctly for humans. Closes #216

This commit is contained in:
Sollace 2022-11-23 21:32:59 +00:00
parent 7a8a1bb655
commit 86f5a1d2dc

View file

@ -62,6 +62,9 @@ public enum Race implements TriggerPixelType<Race> {
}
public String getModelId(boolean isSlim) {
if (isHuman()) {
return isSlim ? "slim" : "default";
}
return isSlim ? "slim" + name().toLowerCase() : name().toLowerCase();
}
}