Fix world level rewards not saving

This commit is contained in:
Melledy
2025-11-07 07:11:10 -08:00
parent e10dd6310b
commit 008c324b25

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() {