Fixed wearables not appearing

This commit is contained in:
Sollace 2019-07-20 14:08:30 +02:00
parent c7bdb76baf
commit 6226407826

View file

@ -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;
}
}
}