mirror of
https://github.com/MineLittlePony/MineLittlePony.git
synced 2025-02-16 17:44:23 +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) {
|
public String getModelId(boolean isSlim) {
|
||||||
|
if (isHuman()) {
|
||||||
|
return isSlim ? "slim" : "default";
|
||||||
|
}
|
||||||
return isSlim ? "slim" + name().toLowerCase() : name().toLowerCase();
|
return isSlim ? "slim" + name().toLowerCase() : name().toLowerCase();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue