Fix bug with compression config

This commit is contained in:
Blue (Lukas Rieger) 2020-01-19 16:51:50 +01:00
parent a56b610afb
commit 7fe60fa96d

View File

@ -239,7 +239,7 @@ private MapConfig(ConfigurationNode node) throws IOException {
this.renderEdges = node.getNode("renderEdges").getBoolean(true); this.renderEdges = node.getNode("renderEdges").getBoolean(true);
this.renderEdges = node.getNode("useCompression").getBoolean(true); this.useGzip = node.getNode("useCompression").getBoolean(true);
this.hiresTileSize = node.getNode("hires", "tileSize").getInt(32); this.hiresTileSize = node.getNode("hires", "tileSize").getInt(32);
this.hiresViewDistance = node.getNode("hires", "viewDistance").getFloat(4.5f); this.hiresViewDistance = node.getNode("hires", "viewDistance").getFloat(4.5f);