mirror of
https://github.com/MineLittlePony/MineLittlePony.git
synced 2024-11-22 04:27:59 +01:00
Fixed wearables not appearing
This commit is contained in:
parent
c7bdb76baf
commit
6226407826
1 changed files with 1 additions and 1 deletions
|
@ -95,7 +95,7 @@ public enum TriggerPixels {
|
|||
|
||||
public int readValue(int x, int y, NativeImage image) {
|
||||
/*getPixelABGR*/
|
||||
return Color.abgrToArgb((image.getPixelRGBA(x, y) >> offset) & mask);
|
||||
return (Color.abgrToArgb(image.getPixelRGBA(x, y)) >> offset) & mask;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue