Fix exp javadoc issues (#2659)

Co-authored-by: liach <liach@users.noreply.github.com>
This commit is contained in:
liach 2021-09-02 06:36:50 -05:00 committed by GitHub
parent 97753f0e3e
commit 51e28694ea
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 6 additions and 3 deletions

View File

@ -2,7 +2,7 @@ CLASS net/minecraft/class_6477 net/minecraft/SaveVersion
COMMENT The version components of Minecraft that is used for identification in COMMENT The version components of Minecraft that is used for identification in
COMMENT save games. COMMENT save games.
FIELD field_34268 MAIN_SERIES Ljava/lang/String; FIELD field_34268 MAIN_SERIES Ljava/lang/String;
COMMENT The default series of a version, {@value}, if a series is not specified. COMMENT The default series of a version, {@code main}, if a series is not specified.
FIELD field_34269 id I FIELD field_34269 id I
FIELD field_34270 series Ljava/lang/String; FIELD field_34270 series Ljava/lang/String;
METHOD <init> (I)V METHOD <init> (I)V
@ -17,6 +17,9 @@ CLASS net/minecraft/class_6477 net/minecraft/SaveVersion
COMMENT {@return the series of this version} COMMENT {@return the series of this version}
COMMENT COMMENT
COMMENT <p>This is stored in the {@code Series} field within {@code level.dat}. COMMENT <p>This is stored in the {@code Series} field within {@code level.dat}.
COMMENT
COMMENT <p>Known values include {@code main} for the main series and
COMMENT {@code ccpreview} for the caves and cliffs experimental snapshots.
METHOD method_37788 isAvailableTo (Lnet/minecraft/class_6477;)Z METHOD method_37788 isAvailableTo (Lnet/minecraft/class_6477;)Z
COMMENT {@return whether this save version can be loaded by the {@code other} version} COMMENT {@return whether this save version can be loaded by the {@code other} version}
ARG 1 other ARG 1 other

View File

@ -42,7 +42,7 @@ CLASS net/minecraft/class_2804 net/minecraft/world/chunk/ChunkNibbleArray
COMMENT Sets the value of a nibble. COMMENT Sets the value of a nibble.
COMMENT COMMENT
COMMENT <p>If the {@code value} has bits outside of the lowest 4 set to {@code 1}, COMMENT <p>If the {@code value} has bits outside of the lowest 4 set to {@code 1},
COMMENT (value is outside of {@code [0, 15]), the extraneous bits are discarded. COMMENT (value is outside of {@code [0, 15]}), the extraneous bits are discarded.
ARG 1 x ARG 1 x
ARG 2 y ARG 2 y
ARG 3 z ARG 3 z

View File

@ -2,7 +2,7 @@ CLASS net/minecraft/class_4298 net/minecraft/world/chunk/GridNibbleArray
COMMENT A specialized chunk nibble array that ignores the Y parameters and only COMMENT A specialized chunk nibble array that ignores the Y parameters and only
COMMENT stores the nibbles for a 16 &times; 16 horizontal chunk slice. COMMENT stores the nibbles for a 16 &times; 16 horizontal chunk slice.
COMMENT COMMENT
COMMENT <p>When it is {@linkplain #toByteArray() converted to a byte array}, it COMMENT <p>When it is {@linkplain #asByteArray() converted to a byte array}, it
COMMENT fills each Y-level of the returned array with the same nibbles it stores. COMMENT fills each Y-level of the returned array with the same nibbles it stores.
FIELD field_31707 INDICES_PER_Y I FIELD field_31707 INDICES_PER_Y I
COMMENT The number of array indices each Y-level uses in a chunk nibble array. COMMENT The number of array indices each Y-level uses in a chunk nibble array.