mirror of
https://gitlab.com/2009scape/2009scape.git
synced 2025-12-21 09:02:07 -07:00
Fixed female appearances with hat flag
This commit is contained in:
parent
bddf499387
commit
878dffecb2
1 changed files with 3 additions and 1 deletions
|
|
@ -235,7 +235,9 @@ public final class Appearance {
|
|||
}
|
||||
|
||||
public void flagHatClipping() {
|
||||
this.bodyParts[8] = 0x100;
|
||||
boolean isBald = getHair().getLook() == (isMale() ? 0 : 45);
|
||||
int hairLook = isBald ? getHair().getLook() : (isMale() ? 5 : 51);
|
||||
this.bodyParts[8] = hairLook + 0x100;
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue