Skip to content

Commit

Permalink
Minor change
Browse files Browse the repository at this point in the history
  • Loading branch information
Meeples10 committed May 5, 2022
1 parent ece2346 commit 53b6553
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -233,11 +233,11 @@ public static List<String> readLines(InputStream stream) throws IOException {
return lines;
}

public static void print(String s) {
public static void print(Object s) {
if(!silent) System.out.print(s);
}

public static void println(String s) {
public static void println(Object s) {
if(!silent) System.out.println(s);
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,7 @@ private void analyzeChunk(NBTTagList sections) {
bitLength = bitLength < 4 ? 4 : bitLength;
int[] blocks = Main.unstream(bitLength, 64, false, blockStates);
int sectionY = tag.getByte("Y");

for(int y = 0; y < 16; y++) {
for(int x = 0; x < 16; x++) {
for(int z = 0; z < 16; z++) {
Expand Down

0 comments on commit 53b6553

Please sign in to comment.