Fix level rewards properly

This commit is contained in:
Melledy
2025-11-07 07:17:02 -08:00
parent 008c324b25
commit 5ddfbd89e5

View File

@@ -49,7 +49,7 @@ public class Bitset {
System.arraycopy(oldData, 0, this.data, 0, oldData.length); System.arraycopy(oldData, 0, this.data, 0, oldData.length);
} }
this.data[longArrayOffset] = ~(1L << bytePosition); this.data[longArrayOffset] &= ~(1L << bytePosition);
} }
public byte[] toByteArray() { public byte[] toByteArray() {