From aa635360a2fb11f69b22b5810cb6802a2b43ce9f Mon Sep 17 00:00:00 2001 From: Brady Date: Sun, 5 Aug 2018 21:13:46 -0500 Subject: [PATCH] Fixed gay comment 16x16 regions = bad --- src/main/java/baritone/bot/chunk/CachedRegion.java | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/main/java/baritone/bot/chunk/CachedRegion.java b/src/main/java/baritone/bot/chunk/CachedRegion.java index ebee5808a..39c6c128b 100644 --- a/src/main/java/baritone/bot/chunk/CachedRegion.java +++ b/src/main/java/baritone/bot/chunk/CachedRegion.java @@ -20,9 +20,7 @@ import java.util.zip.GZIPOutputStream; public final class CachedRegion implements ICachedChunkAccess { /** - * All of the chunks in this region. A 16x16 array of them. - *

- * I would make these 32x32 regions to be in line with the Anvil format, but 16 is a nice number. + * All of the chunks in this region: A 32x32 array of them. */ private final CachedChunk[][] chunks = new CachedChunk[32][32];