mirror of
https://github.com/mcMMO-Dev/mcMMO.git
synced 2024-11-23 05:36:46 +01:00
Do not increment i in this location
This commit is contained in:
parent
67738d811e
commit
63cf6e9b3a
@ -76,7 +76,7 @@ public class PrimitiveChunkletStore implements ChunkletStore {
|
||||
|
||||
for(int i = 0; i < 8; i++) {
|
||||
for(int j = 0; j < 8; j++) {
|
||||
yColumn[j + (i * 8)] = (temp[++i] & 1 << j) != 0;
|
||||
yColumn[j + (i * 8)] = (temp[i + 1] & 1 << j) != 0;
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user