1
0
mirror of https://github.com/mcMMO-Dev/mcMMO.git synced 2025-06-20 07:51:25 +02:00

A bit more clear

But no functional change
This commit is contained in:
NuclearW 2012-07-06 17:21:28 -04:00
parent 63cf6e9b3a
commit b893e86f3c

@ -76,7 +76,7 @@ public class PrimitiveChunkletStore implements ChunkletStore {
for(int i = 0; i < 8; i++) { for(int i = 0; i < 8; i++) {
for(int j = 0; j < 8; j++) { for(int j = 0; j < 8; j++) {
yColumn[j + (i * 8)] = (temp[i + 1] & 1 << j) != 0; yColumn[j + (i * 8)] = (temp[i + 1] & (1 << j)) != 0;
} }
} }