From b0581c68220cc4fe9247584984b7395b37e6cf4b Mon Sep 17 00:00:00 2001 From: YanisBft Date: Sat, 9 Sep 2023 17:54:41 +0200 Subject: [PATCH] Fix box length methods not following conventions (#3657) --- mappings/net/minecraft/util/math/Box.mapping | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/mappings/net/minecraft/util/math/Box.mapping b/mappings/net/minecraft/util/math/Box.mapping index 170ccde8b4..e2d086df9b 100644 --- a/mappings/net/minecraft/util/math/Box.mapping +++ b/mappings/net/minecraft/util/math/Box.mapping @@ -90,9 +90,12 @@ CLASS net/minecraft/class_238 net/minecraft/util/math/Box METHOD method_1014 expand (D)Lnet/minecraft/class_238; COMMENT @see #contract(double) ARG 1 value - METHOD method_17939 getXLength ()D - METHOD method_17940 getYLength ()D - METHOD method_17941 getZLength ()D + METHOD method_17939 getLengthX ()D + COMMENT {@return the length of this box on the X axis} + METHOD method_17940 getLengthY ()D + COMMENT {@return the length of this box on the Y axis} + METHOD method_17941 getLengthZ ()D + COMMENT {@return the length of this box on the Z axis} METHOD method_18804 stretch (Lnet/minecraft/class_243;)Lnet/minecraft/class_238; ARG 1 scale METHOD method_19316 from (Lnet/minecraft/class_3341;)Lnet/minecraft/class_238;