From 6c35625c5276d45a2962b02e7aac7819dad53e14 Mon Sep 17 00:00:00 2001 From: TelepathicGrunt <40846040+TelepathicGrunt@users.noreply.github.com> Date: Sun, 13 Oct 2024 20:26:20 -0400 Subject: [PATCH] fixed typo in biome temperature tag javadoc --- src/main/java/net/neoforged/neoforge/common/Tags.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/net/neoforged/neoforge/common/Tags.java b/src/main/java/net/neoforged/neoforge/common/Tags.java index f066f32579..f5656d2263 100644 --- a/src/main/java/net/neoforged/neoforge/common/Tags.java +++ b/src/main/java/net/neoforged/neoforge/common/Tags.java @@ -895,7 +895,7 @@ public static class Biomes { public static final TagKey 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 IS_HOT = tag("is_hot"); public static final TagKey IS_HOT_OVERWORLD = tag("is_hot/overworld"); @@ -911,7 +911,7 @@ public static class Biomes { public static final TagKey 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 IS_COLD = tag("is_cold"); public static final TagKey IS_COLD_OVERWORLD = tag("is_cold/overworld");