mirror of
https://github.com/MineLittlePony/MineLittlePony.git
synced 2024-11-22 04:27:59 +01:00
Fixed alex/steve arm types not being applied correctly for humans. Closes #216
This commit is contained in:
parent
7a8a1bb655
commit
86f5a1d2dc
1 changed files with 3 additions and 0 deletions
|
@ -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();
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue