소스 검색

Parenthesis for clarity

NuclearW 13 년 전
부모
커밋
37308917d1
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      src/main/java/com/gmail/nossr50/util/blockmeta/PrimitiveChunkletStore.java

+ 1 - 1
src/main/java/com/gmail/nossr50/util/blockmeta/PrimitiveChunkletStore.java

@@ -122,7 +122,7 @@ public class PrimitiveChunkletStore implements ChunkletStore {
 
             for(int y = subColumnIndex; y < subColumnEnd; y++) {
                 if(store[x][z][y]) {
-                    yCompressed |= 1 << y % 8; 
+                    yCompressed |= 1 << (y % 8);
                 }
             }