Skip to content

Commit

Permalink
Merge pull request FabricMC#4 from Prospector/master
Browse files Browse the repository at this point in the history
Fix two javadoc mistakes
  • Loading branch information
valoeghese authored Jun 13, 2019
2 parents ed08061 + 6c7b7ab commit bdb8c93
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -33,12 +33,12 @@ public enum OverworldClimate {
COOL,

/**
* In Vanilla, snowy biomes include Forest, Dark Forest, Mountains, Plains, Birch Forest, and Swamp (all with weights of 1)
* In Vanilla, temperate biomes include Forest, Dark Forest, Mountains, Plains, Birch Forest, and Swamp (all with weights of 1)
*/
TEMPERATE,

/**
* In Vanilla, snowy biomes include Deserts (with a weight of 3), Savannas (with a weight of 2), and Plains (with a weight of 1)
* In Vanilla, dry biomes include Deserts (with a weight of 3), Savannas (with a weight of 2), and Plains (with a weight of 1)
*/
DRY
}
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,8 @@ public class BaseBiomeEntry {

/**
* @param biome the biome
* @param weight how often a biome will be chosen. Most vanilla biomes are a frequency of 1.
* @param weight how often a biome will be chosen. Most vanilla biomes have a
* weight of 1, but a full list of values can be seen in {@link OverworldClimate}.
* @param climate the climate of the biome entry, just used to store weights
*/
public BaseBiomeEntry(final Biome biome, final double weight, OverworldClimate climate) {
Expand Down

0 comments on commit bdb8c93

Please sign in to comment.