Skip to content

Commit 7fe60fa

Browse files
committed
Fix bug with compression config
1 parent a56b610 commit 7fe60fa

File tree

1 file changed

+1
-1
lines changed
  • BlueMapCore/src/main/java/de/bluecolored/bluemap/core/config

1 file changed

+1
-1
lines changed

BlueMapCore/src/main/java/de/bluecolored/bluemap/core/config/MainConfig.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -239,7 +239,7 @@ private MapConfig(ConfigurationNode node) throws IOException {
239239

240240
this.renderEdges = node.getNode("renderEdges").getBoolean(true);
241241

242-
this.renderEdges = node.getNode("useCompression").getBoolean(true);
242+
this.useGzip = node.getNode("useCompression").getBoolean(true);
243243

244244
this.hiresTileSize = node.getNode("hires", "tileSize").getInt(32);
245245
this.hiresViewDistance = node.getNode("hires", "viewDistance").getFloat(4.5f);

0 commit comments

Comments
 (0)