mirror of
https://github.com/MineLittlePony/MineLittlePony.git
synced 2025-04-01 01:05:27 +02: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) {
|
public int readValue(int x, int y, NativeImage image) {
|
||||||
/*getPixelABGR*/
|
/*getPixelABGR*/
|
||||||
return Color.abgrToArgb((image.getPixelRGBA(x, y) >> offset) & mask);
|
return (Color.abgrToArgb(image.getPixelRGBA(x, y)) >> offset) & mask;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue