Skip to content

Commit

Permalink
fixed typo in biome temperature tag javadoc
Browse files Browse the repository at this point in the history
  • Loading branch information
TelepathicGrunt committed Oct 14, 2024
1 parent 91578f6 commit 6c35625
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/net/neoforged/neoforge/common/Tags.java
Original file line number Diff line number Diff line change
Expand Up @@ -895,7 +895,7 @@ public static class Biomes {
public static final TagKey<Biome> IS_VOID = tag("is_void");

/**
* Biomes that are between above 0.8 temperature. (Excluding 0.8)
* Biomes that are above 0.8 temperature. (Excluding 0.8)
*/
public static final TagKey<Biome> IS_HOT = tag("is_hot");
public static final TagKey<Biome> IS_HOT_OVERWORLD = tag("is_hot/overworld");
Expand All @@ -911,7 +911,7 @@ public static class Biomes {
public static final TagKey<Biome> IS_TEMPERATE_END = tag("is_temperate/end");

/**
* Biomes that are between below 0.5 temperature. (Excluding 0.5)
* Biomes that are below 0.5 temperature. (Excluding 0.5)
*/
public static final TagKey<Biome> IS_COLD = tag("is_cold");
public static final TagKey<Biome> IS_COLD_OVERWORLD = tag("is_cold/overworld");
Expand Down

0 comments on commit 6c35625

Please sign in to comment.