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
1 changed files with 1 additions and 1 deletions

View File

@ -239,7 +239,7 @@ public class MainConfig implements WebServerConfig {
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.hiresViewDistance = node.getNode("hires", "viewDistance").getFloat(4.5f);