From ff3f6280293d750bcdb5c3732f84573f91963d75 Mon Sep 17 00:00:00 2001 From: liach <7806504+liach@users.noreply.github.com> Date: Thu, 2 Sep 2021 06:35:31 -0500 Subject: [PATCH] Fix #2652 broken return tags (#2656) Signed-off-by: liach Co-authored-by: liach --- mappings/net/minecraft/util/math/MathHelper.mapping | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mappings/net/minecraft/util/math/MathHelper.mapping b/mappings/net/minecraft/util/math/MathHelper.mapping index 48bd035340..d5d916b394 100644 --- a/mappings/net/minecraft/util/math/MathHelper.mapping +++ b/mappings/net/minecraft/util/math/MathHelper.mapping @@ -167,7 +167,7 @@ CLASS net/minecraft/class_3532 net/minecraft/util/math/MathHelper METHOD method_15394 randomUuid ()Ljava/util/UUID; METHOD method_15395 nextInt (Ljava/util/Random;II)I COMMENT {@return a random, uniformly distributed integer value in {@code - COMMENT [min, max]} If the range is empty (i.e. {@code max < min}), it + COMMENT [min, max]}} If the range is empty (i.e. {@code max < min}), it COMMENT returns {@code min}. ARG 0 random ARG 1 min @@ -268,7 +268,7 @@ CLASS net/minecraft/class_3532 net/minecraft/util/math/MathHelper ARG 2 max METHOD method_32751 nextBetween (Ljava/util/Random;II)I COMMENT {@return a random, uniformly distributed integer value in {@code - COMMENT [min, max]} + COMMENT [min, max]}} COMMENT COMMENT @throws IllegalArgumentException if the range is empty (i.e. {@code COMMENT max < min})