diff --git a/src/main/java/tk/valoeghese/fc0/client/Client2fc.java b/src/main/java/tk/valoeghese/fc0/client/Client2fc.java index 198312c..f768da2 100644 --- a/src/main/java/tk/valoeghese/fc0/client/Client2fc.java +++ b/src/main/java/tk/valoeghese/fc0/client/Client2fc.java @@ -330,8 +330,8 @@ private void render() { } else { this.version.render(); this.crosshair.render(); + this.biomeWidget.render(); } - this.biomeWidget.render(); if (this.player.isUnderwater()) { GraphicsSystem.enableBlend(); diff --git a/src/main/java/tk/valoeghese/fc0/world/Player.java b/src/main/java/tk/valoeghese/fc0/world/Player.java index 64be144..7cb42f3 100644 --- a/src/main/java/tk/valoeghese/fc0/world/Player.java +++ b/src/main/java/tk/valoeghese/fc0/world/Player.java @@ -130,7 +130,7 @@ public TilePos getTilePos() { } public float getHorizontalSlowness() { - return 40.0f; + return 52.0f; } public double getJumpStrength() { diff --git a/src/main/java/tk/valoeghese/fc0/world/gen/EcoZone.java b/src/main/java/tk/valoeghese/fc0/world/gen/EcoZone.java index 40712af..168b62a 100644 --- a/src/main/java/tk/valoeghese/fc0/world/gen/EcoZone.java +++ b/src/main/java/tk/valoeghese/fc0/world/gen/EcoZone.java @@ -60,7 +60,7 @@ public String toString() { .addGenerator(Generator.GROUND_FOLIAGE, new GroundFoliageGeneratorSettings(3, 4, Tile.DAISY, Tile.DAISY, Tile.TALLGRASS)) .addGenerator(Generator.TREE, new TreeGeneratorSettings(2, 2.0f)); - public static final EcoZone TUNDRA = new EcoZone("tundra") + public static final EcoZone TUNDRA = new EcoZone("tundra", Tile.GRASS, Tile.STONE) .addGenerator(Generator.TREE, new TreeGeneratorSettings(0, 0)) .addGenerator(Generator.GROUND_FOLIAGE, new GroundFoliageGeneratorSettings(0, 1, Tile.TALLGRASS));