Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix box length methods not following conventions #3657

Merged
merged 1 commit into from
Sep 9, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 6 additions & 3 deletions mappings/net/minecraft/util/math/Box.mapping
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down