Skip to content

Commit

Permalink
0.1.5 final touches
Browse files Browse the repository at this point in the history
  • Loading branch information
valoeghese committed May 25, 2020
1 parent ac41e1a commit a95eda1
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/main/java/tk/valoeghese/fc0/client/Client2fc.java
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/tk/valoeghese/fc0/world/Player.java
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ public TilePos getTilePos() {
}

public float getHorizontalSlowness() {
return 40.0f;
return 52.0f;
}

public double getJumpStrength() {
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/tk/valoeghese/fc0/world/gen/EcoZone.java
Original file line number Diff line number Diff line change
Expand Up @@ -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));

Expand Down

0 comments on commit a95eda1

Please sign in to comment.