diff --git a/CONVENTIONS.md b/CONVENTIONS.md index c970e2b9f9..7233f01f95 100644 --- a/CONVENTIONS.md +++ b/CONVENTIONS.md @@ -189,10 +189,10 @@ Assume this is the decompiled content in Enigma, which does not show imports: ```java /** * Assume this class is from the {@code net.example.stuff} package. - * - *

You can link to {@link Optional} as it's part of the class signature (type parameter bound). - * - *

You must fully qualify {@link net.example.stuff.basic.BasicStuffUser} when linking as it is not in + *

+ * You can link to {@link Optional} as it's part of the class signature (type parameter bound). + *

+ * You must fully qualify {@link net.example.stuff.basic.BasicStuffUser} when linking as it is not in * any signature and is from a different package. */ public class Stuff> { @@ -203,8 +203,8 @@ public class Stuff> { /** * You can link to {@link List} with the simple name as it's part of a method's signature. - * - *

You must fully qualify {@link net.example.util.UtilityClass} when linking because it is not part + *

+ * You must fully qualify {@link net.example.util.UtilityClass} when linking because it is not part * of any signature (even though it is used in code) and is from a different package. */ public Stuff(List opt) { diff --git a/mappings/com/mojang/blaze3d/shader/GlslImportProcessor.mapping b/mappings/com/mojang/blaze3d/shader/GlslImportProcessor.mapping index 0cd90656d4..ebaf483999 100644 --- a/mappings/com/mojang/blaze3d/shader/GlslImportProcessor.mapping +++ b/mappings/com/mojang/blaze3d/shader/GlslImportProcessor.mapping @@ -34,8 +34,8 @@ CLASS net/minecraft/unmapped/C_zoomygsl com/mojang/blaze3d/shader/GlslImportProc METHOD m_zkksxvxz process (Ljava/lang/String;)Ljava/util/List; COMMENT Reads the source code supplied into a list of lines suitable for uploading to COMMENT the GL Shader cache. - COMMENT - COMMENT

Imports are processed as per the description of this class. + COMMENT

+ COMMENT Imports are processed as per the description of this class. ARG 1 source CLASS C_ctvnulwe Context COMMENT A context for the parser to keep track of its current line and caret position in the file. diff --git a/mappings/com/mojang/blaze3d/systems/RenderCallStorage.mapping b/mappings/com/mojang/blaze3d/systems/RenderCallStorage.mapping index c600ee913a..82114f42ba 100644 --- a/mappings/com/mojang/blaze3d/systems/RenderCallStorage.mapping +++ b/mappings/com/mojang/blaze3d/systems/RenderCallStorage.mapping @@ -3,8 +3,8 @@ CLASS net/minecraft/unmapped/C_gxbhfeky com/mojang/blaze3d/systems/RenderCallSto COMMENT three queues: a recording queue, a processing queue, and a last processed COMMENT queue. The recording queue is equal to the processing queue during processing COMMENT and different during recording. - COMMENT - COMMENT

This storage appears to be a work in progress, as its processing currently + COMMENT

+ COMMENT This storage appears to be a work in progress, as its processing currently COMMENT performs no operation. FIELD f_ajurnmpu processing Z FIELD f_cmneiads recording Z diff --git a/mappings/com/mojang/blaze3d/texture/NativeImage.mapping b/mappings/com/mojang/blaze3d/texture/NativeImage.mapping index 7ab4ca7d70..5cbdb5e3fc 100644 --- a/mappings/com/mojang/blaze3d/texture/NativeImage.mapping +++ b/mappings/com/mojang/blaze3d/texture/NativeImage.mapping @@ -32,8 +32,8 @@ CLASS net/minecraft/unmapped/C_ayikuhxa com/mojang/blaze3d/texture/NativeImage METHOD m_bhuofelc setPixelColor (III)V COMMENT Sets the color of a pixel on this native image. COMMENT The color to be set using this method should be in a ABGR format. - COMMENT - COMMENT

This is only supported when this native image's format is {@link NativeImage.Format#ABGR ABGR} + COMMENT

+ COMMENT This is only supported when this native image's format is {@link NativeImage.Format#ABGR ABGR} ARG 1 x ARG 2 y ARG 3 color @@ -63,8 +63,8 @@ CLASS net/minecraft/unmapped/C_ayikuhxa com/mojang/blaze3d/texture/NativeImage METHOD m_gnawjfwf getPixelColor (II)I COMMENT Gets the color of a pixel on this native image. COMMENT The color returned by this method will be in a ABGR format. - COMMENT - COMMENT

This is only supported when this native image's format is {@link NativeImage.Format#ABGR ABGR}. + COMMENT

+ COMMENT This is only supported when this native image's format is {@link NativeImage.Format#ABGR ABGR}. ARG 1 x ARG 2 y METHOD m_grhlefuk blendPixel (III)V diff --git a/mappings/net/minecraft/block/AbstractBlock.mapping b/mappings/net/minecraft/block/AbstractBlock.mapping index 7dce8d17a3..2a35e1d4c2 100644 --- a/mappings/net/minecraft/block/AbstractBlock.mapping +++ b/mappings/net/minecraft/block/AbstractBlock.mapping @@ -140,11 +140,11 @@ CLASS net/minecraft/unmapped/C_triydqro net/minecraft/block/AbstractBlock METHOD m_rocdemyx onUse (Lnet/minecraft/unmapped/C_txtbiemp;Lnet/minecraft/unmapped/C_cdctfzbn;Lnet/minecraft/unmapped/C_hynzadkk;Lnet/minecraft/unmapped/C_jzrpycqo;Lnet/minecraft/unmapped/C_laxmzoqs;Lnet/minecraft/unmapped/C_jdakttms;)Lnet/minecraft/unmapped/C_ozuepbyj; COMMENT Called when this block is used by a player. COMMENT This, by default, is bound to using the right mouse button. - COMMENT - COMMENT

This method is called on both the logical client and logical server, so take caution when overriding this method. + COMMENT

+ COMMENT This method is called on both the logical client and logical server, so take caution when overriding this method. COMMENT The logical side can be checked using {@link net.minecraft.world.World#isClient() world.isClient()}. - COMMENT - COMMENT

If the action result is successful on a logical client, then the action will be sent to the logical server for processing. + COMMENT

+ COMMENT If the action result is successful on a logical client, then the action will be sent to the logical server for processing. COMMENT COMMENT @return an action result that specifies if using the block was successful. ARG 1 state @@ -177,8 +177,8 @@ CLASS net/minecraft/unmapped/C_triydqro net/minecraft/block/AbstractBlock ARG 6 notify METHOD m_umbsjste rotate (Lnet/minecraft/unmapped/C_txtbiemp;Lnet/minecraft/unmapped/C_mboglirk;)Lnet/minecraft/unmapped/C_txtbiemp; COMMENT Applies a block rotation to a block state. - COMMENT - COMMENT

By default, this returns the provided block state. + COMMENT

+ COMMENT By default, this returns the provided block state. COMMENT COMMENT @return the rotated block state ARG 1 state @@ -617,8 +617,8 @@ CLASS net/minecraft/unmapped/C_triydqro net/minecraft/block/AbstractBlock METHOD m_dbqsutun liquid ()Lnet/minecraft/unmapped/C_triydqro$C_xnkxsdfy; METHOD m_dfcscaql noCollision ()Lnet/minecraft/unmapped/C_triydqro$C_xnkxsdfy; COMMENT Specifies that a block should have no collision bounds. - COMMENT - COMMENT

This also marks a block as non-opaque. + COMMENT

+ COMMENT This also marks a block as non-opaque. METHOD m_dsszzhch pistonBehavior (Lnet/minecraft/unmapped/C_mojvzhua;)Lnet/minecraft/unmapped/C_triydqro$C_xnkxsdfy; ARG 1 pistonBehavior METHOD m_eajltsia solidBlock (Lnet/minecraft/unmapped/C_triydqro$C_izsedryc;)Lnet/minecraft/unmapped/C_triydqro$C_xnkxsdfy; diff --git a/mappings/net/minecraft/block/AbstractRailBlock.mapping b/mappings/net/minecraft/block/AbstractRailBlock.mapping index a37c3fc3fb..55b9cdab8f 100644 --- a/mappings/net/minecraft/block/AbstractRailBlock.mapping +++ b/mappings/net/minecraft/block/AbstractRailBlock.mapping @@ -17,10 +17,12 @@ CLASS net/minecraft/unmapped/C_mgkftsgg net/minecraft/block/AbstractRailBlock ARG 4 notify METHOD m_oyknusit shouldDropRail (Lnet/minecraft/unmapped/C_hynzadkk;Lnet/minecraft/unmapped/C_cdctfzbn;Lnet/minecraft/unmapped/C_wqmdpcsg;)Z COMMENT Checks if this rail should be dropped. - COMMENT - COMMENT

This method will return true if: - COMMENT

+ COMMENT

+ COMMENT This method will return true if: + COMMENT

ARG 0 pos ARG 1 world ARG 2 shape diff --git a/mappings/net/minecraft/block/Block.mapping b/mappings/net/minecraft/block/Block.mapping index ff08e96328..142e676535 100644 --- a/mappings/net/minecraft/block/Block.mapping +++ b/mappings/net/minecraft/block/Block.mapping @@ -1,19 +1,19 @@ CLASS net/minecraft/unmapped/C_mmxmpdoq net/minecraft/block/Block COMMENT Represents a block that can be placed in a world. - COMMENT - COMMENT

There is exactly one instance for every type of block. Every stone + COMMENT

+ COMMENT There is exactly one instance for every type of block. Every stone COMMENT block for example in a world shares the same block instance. Each block COMMENT instance is registered under the Block Registry. COMMENT See {@link Blocks} for examples of block instances. - COMMENT - COMMENT

An item corresponding to a block is not automatically created. You + COMMENT

+ COMMENT An item corresponding to a block is not automatically created. You COMMENT may create your own {@link net.minecraft.item.BlockItem} and register it COMMENT under the Item Registry - COMMENT - COMMENT

The translation key for the block name is determined by {@link + COMMENT

+ COMMENT The translation key for the block name is determined by {@link COMMENT #getTranslationKey}. - COMMENT - COMMENT

In the world, the actual voxels are not stored as blocks, but as + COMMENT

+ COMMENT In the world, the actual voxels are not stored as blocks, but as COMMENT {@linkplain BlockState block states}. The possible states of the block COMMENT is defined by {@link appendProperties}. COMMENT @@ -66,8 +66,8 @@ CLASS net/minecraft/unmapped/C_mmxmpdoq net/minecraft/block/Block METHOD m_bdlslsvh getStateManager ()Lnet/minecraft/unmapped/C_ezfeikaq; METHOD m_bsuyxxeg getTranslationKey ()Ljava/lang/String; COMMENT {@return the translation key for the name of this block} - COMMENT - COMMENT

By default, it returns {@code block.namespace.path} where {@code + COMMENT

+ COMMENT By default, it returns {@code block.namespace.path} where {@code COMMENT namespace} and {@code path} are of the identifier used for registering COMMENT this block, but {@code /} in {@code path} is replaced with {@code .}. COMMENT If the block is not registered, it returns {@code block.unregistered_sadface}. @@ -180,10 +180,10 @@ CLASS net/minecraft/unmapped/C_mmxmpdoq net/minecraft/block/Block ARG 3 size METHOD m_ocypbslz replace (Lnet/minecraft/unmapped/C_txtbiemp;Lnet/minecraft/unmapped/C_txtbiemp;Lnet/minecraft/unmapped/C_vdvbsyle;Lnet/minecraft/unmapped/C_hynzadkk;II)V COMMENT Replaces the {@code state} with the {@code newState} at the {@code pos}. - COMMENT - COMMENT

If the two state objects are identical, this method does nothing. - COMMENT - COMMENT

If the new state {@linkplain BlockState#isAir() is air}, + COMMENT

+ COMMENT If the two state objects are identical, this method does nothing. + COMMENT

+ COMMENT If the new state {@linkplain BlockState#isAir() is air}, COMMENT breaks the block at the position instead. ARG 0 state COMMENT the existing block state @@ -203,10 +203,10 @@ CLASS net/minecraft/unmapped/C_mmxmpdoq net/minecraft/block/Block ARG 2 property METHOD m_phnkbohu replace (Lnet/minecraft/unmapped/C_txtbiemp;Lnet/minecraft/unmapped/C_txtbiemp;Lnet/minecraft/unmapped/C_vdvbsyle;Lnet/minecraft/unmapped/C_hynzadkk;I)V COMMENT Replaces the {@code state} with the {@code newState} at the {@code pos}. - COMMENT - COMMENT

If the two state objects are identical, this method does nothing. - COMMENT - COMMENT

If the new state {@linkplain BlockState#isAir() is air}, + COMMENT

+ COMMENT If the two state objects are identical, this method does nothing. + COMMENT

+ COMMENT If the new state {@linkplain BlockState#isAir() is air}, COMMENT breaks the block at the position instead. ARG 0 state COMMENT the existing block state diff --git a/mappings/net/minecraft/block/DyedCarpetBlock.mapping b/mappings/net/minecraft/block/DyedCarpetBlock.mapping index f8eca077c8..f5e8e4f0cd 100644 --- a/mappings/net/minecraft/block/DyedCarpetBlock.mapping +++ b/mappings/net/minecraft/block/DyedCarpetBlock.mapping @@ -7,6 +7,6 @@ CLASS net/minecraft/unmapped/C_jgxnpxls net/minecraft/block/DyedCarpetBlock ARG 2 settings METHOD m_qzraopws getDyeColor ()Lnet/minecraft/unmapped/C_arllgqae; COMMENT {@return the color of this carpet when worn by a {@linkplain net.minecraft.entity.passive.LlamaEntity llama}} - COMMENT - COMMENT

If {@code null}, the llama will not appear to be wearing the carpet. + COMMENT

+ COMMENT If {@code null}, the llama will not appear to be wearing the carpet. COMMENT However, the carpet will remain wearable by the llama. diff --git a/mappings/net/minecraft/block/entity/BellBlockEntity.mapping b/mappings/net/minecraft/block/entity/BellBlockEntity.mapping index 4cf7f89144..ac7a69a9c4 100644 --- a/mappings/net/minecraft/block/entity/BellBlockEntity.mapping +++ b/mappings/net/minecraft/block/entity/BellBlockEntity.mapping @@ -62,8 +62,8 @@ CLASS net/minecraft/unmapped/C_lxkuepdf net/minecraft/block/entity/BellBlockEnti ARG 1 entity METHOD m_yxwdlhjo raidersHearBell (Lnet/minecraft/unmapped/C_hynzadkk;Ljava/util/List;)Z COMMENT Determines whether at least one of the given entities would be affected by the bell. - COMMENT - COMMENT

This determines whether the bell resonates. + COMMENT

+ COMMENT This determines whether the bell resonates. COMMENT For some reason, despite affected by the bell, entities more than 32 blocks away will not count as hearing the bell. ARG 0 pos ARG 1 hearingEntities diff --git a/mappings/net/minecraft/block/entity/EndGatewayBlockEntity.mapping b/mappings/net/minecraft/block/entity/EndGatewayBlockEntity.mapping index 848cf8f8bd..46f7148dd8 100644 --- a/mappings/net/minecraft/block/entity/EndGatewayBlockEntity.mapping +++ b/mappings/net/minecraft/block/entity/EndGatewayBlockEntity.mapping @@ -45,8 +45,8 @@ CLASS net/minecraft/unmapped/C_bgmbcwaf net/minecraft/block/entity/EndGatewayBlo ARG 0 entity METHOD m_tkkmaceb setupExitPortalLocation (Lnet/minecraft/unmapped/C_bdwnwhiu;Lnet/minecraft/unmapped/C_hynzadkk;)Lnet/minecraft/unmapped/C_hynzadkk; COMMENT Finds teleport location and creates an island to teleport to (if there is none). - COMMENT - COMMENT

This does not create an exit portal. + COMMENT

+ COMMENT This does not create an exit portal. COMMENT COMMENT @return the position of the exit portal ARG 0 world diff --git a/mappings/net/minecraft/client/MinecraftClient.mapping b/mappings/net/minecraft/client/MinecraftClient.mapping index b7f48fd644..2373f30934 100644 --- a/mappings/net/minecraft/client/MinecraftClient.mapping +++ b/mappings/net/minecraft/client/MinecraftClient.mapping @@ -3,8 +3,8 @@ CLASS net/minecraft/unmapped/C_ayfeobid net/minecraft/client/MinecraftClient COMMENT The logical Minecraft client is responsible for rendering, sound playback and control input. COMMENT The Minecraft client also manages connections to a logical server which may be the client's {@link net.minecraft.server.integrated.IntegratedServer} or a remote server. COMMENT The Minecraft client instance may be obtained using {@link MinecraftClient#getInstance()}. - COMMENT - COMMENT

Rendering on a Minecraft client is split into several facilities. + COMMENT

+ COMMENT Rendering on a Minecraft client is split into several facilities. COMMENT The primary entrypoint for rendering is {@link net.minecraft.client.render.GameRenderer#render(float, long, boolean)}. COMMENT

COMMENT @@ -35,7 +35,8 @@ CLASS net/minecraft/unmapped/C_ayfeobid net/minecraft/client/MinecraftClient COMMENT COMMENT COMMENT - COMMENT
Rendering facilities
Game hud (health bar, hunger bar) {@link net.minecraft.client.gui.hud.InGameHud}
+ COMMENT + COMMENT COMMENT COMMENT @see net.minecraft.server.integrated.IntegratedServer COMMENT @see net.minecraft.client.render.GameRenderer @@ -241,8 +242,8 @@ CLASS net/minecraft/unmapped/C_ayfeobid net/minecraft/client/MinecraftClient ARG 1 digit METHOD m_eexpmkot shouldBlockMessages (Ljava/util/UUID;)Z COMMENT Checks if the client should block messages from the {@code sender}. - COMMENT - COMMENT

If true, messages will not be displayed in chat and narrator will not process + COMMENT

+ COMMENT If true, messages will not be displayed in chat and narrator will not process COMMENT them. ARG 1 sender METHOD m_eezvcyrt stop ()V @@ -318,8 +319,8 @@ CLASS net/minecraft/unmapped/C_ayfeobid net/minecraft/client/MinecraftClient METHOD m_jgfcfpip isOptionalTelemetryAvailable ()Z METHOD m_jiouzlzi getServer ()Lnet/minecraft/unmapped/C_mxzbwazq; COMMENT Gets this client's own integrated server. - COMMENT - COMMENT

The integrated server is only present when a local single player world is open. + COMMENT

+ COMMENT The integrated server is only present when a local single player world is open. METHOD m_jtfycguy getVersionType ()Ljava/lang/String; METHOD m_jytpvdsa countryEqualsISO3 (Ljava/lang/Object;)Z ARG 0 o @@ -405,8 +406,8 @@ CLASS net/minecraft/unmapped/C_ayfeobid net/minecraft/client/MinecraftClient METHOD m_qflkyikk getSplashTextLoader ()Lnet/minecraft/unmapped/C_iyhcmfwn; METHOD m_qgbmplum takeHugeScreenshot (Ljava/io/File;IIII)Lnet/minecraft/unmapped/C_rdaqiwdt; COMMENT Takes a huge screenshot in the tga file format. - COMMENT - COMMENT

The {@code unitWidth} and {@code unitHeight} controls the size of the + COMMENT

+ COMMENT The {@code unitWidth} and {@code unitHeight} controls the size of the COMMENT partial image rendered; it does not affect the screenshot outcome, but may COMMENT affect the screenshot performance. COMMENT diff --git a/mappings/net/minecraft/client/font/TextVisitFactory.mapping b/mappings/net/minecraft/client/font/TextVisitFactory.mapping index 145aa78768..01686a4aed 100644 --- a/mappings/net/minecraft/client/font/TextVisitFactory.mapping +++ b/mappings/net/minecraft/client/font/TextVisitFactory.mapping @@ -18,8 +18,8 @@ CLASS net/minecraft/unmapped/C_qpsrdirb net/minecraft/client/font/TextVisitFacto ARG 0 text METHOD m_buphjbxo visitFormatted (Ljava/lang/String;ILnet/minecraft/unmapped/C_cpwnhism;Lnet/minecraft/unmapped/C_kexvwzdm;)Z COMMENT Visits the code points of a string, applying the formatting codes within. - COMMENT - COMMENT

The visit is in forward direction. + COMMENT

+ COMMENT The visit is in forward direction. COMMENT COMMENT @return {@code true} if the full string was visited, or {@code false} indicating COMMENT the {@code visitor} terminated half-way @@ -47,8 +47,8 @@ CLASS net/minecraft/unmapped/C_qpsrdirb net/minecraft/client/font/TextVisitFacto ARG 3 codePoint METHOD m_dhlhwpav visitFormatted (Ljava/lang/String;ILnet/minecraft/unmapped/C_cpwnhism;Lnet/minecraft/unmapped/C_cpwnhism;Lnet/minecraft/unmapped/C_kexvwzdm;)Z COMMENT Visits the code points of a string, applying the formatting codes within. - COMMENT - COMMENT

The visit is in forward direction. + COMMENT

+ COMMENT The visit is in forward direction. COMMENT COMMENT @return {@code true} if the full string was visited, or {@code false} indicating COMMENT the {@code visitor} terminated half-way @@ -68,8 +68,8 @@ CLASS net/minecraft/unmapped/C_qpsrdirb net/minecraft/client/font/TextVisitFacto ARG 3 codePoint METHOD m_icktwjgz visitFormatted (Ljava/lang/String;Lnet/minecraft/unmapped/C_cpwnhism;Lnet/minecraft/unmapped/C_kexvwzdm;)Z COMMENT Visits the code points of a string, applying the formatting codes within. - COMMENT - COMMENT

The visit is in forward direction. + COMMENT

+ COMMENT The visit is in forward direction. COMMENT COMMENT @return {@code true} if the full string was visited, or {@code false} indicating COMMENT the {@code visitor} terminated half-way @@ -82,8 +82,8 @@ CLASS net/minecraft/unmapped/C_qpsrdirb net/minecraft/client/font/TextVisitFacto METHOD m_lcnitqwa visitFormatted (Lnet/minecraft/unmapped/C_xzalvetc;Lnet/minecraft/unmapped/C_cpwnhism;Lnet/minecraft/unmapped/C_kexvwzdm;)Z COMMENT Visits the code points for every literal string and the formatting codes COMMENT supplied by the renderable. - COMMENT - COMMENT

The visit is in forward direction. + COMMENT

+ COMMENT The visit is in forward direction. COMMENT COMMENT @return {@code true} if the full string was visited, or {@code false} indicating COMMENT the {@code visitor} terminated half-way diff --git a/mappings/net/minecraft/client/gui/hud/InGameHud.mapping b/mappings/net/minecraft/client/gui/hud/InGameHud.mapping index 9542582a8f..39e130f1c5 100644 --- a/mappings/net/minecraft/client/gui/hud/InGameHud.mapping +++ b/mappings/net/minecraft/client/gui/hud/InGameHud.mapping @@ -1,7 +1,7 @@ CLASS net/minecraft/unmapped/C_nepwsmgw net/minecraft/client/gui/hud/InGameHud COMMENT Responsible for rendering the HUD elements while the player is in game. - COMMENT - COMMENT

The current instance used by the client can be obtained by {@link + COMMENT

+ COMMENT The current instance used by the client can be obtained by {@link COMMENT MinecraftClient#inGameHud MinecraftClient.getInstance().inGameHud}. FIELD f_aazbtyrp WHITE I FIELD f_akoeebzf currentStack Lnet/minecraft/unmapped/C_sddaxwyk; diff --git a/mappings/net/minecraft/client/gui/screen/Screen.mapping b/mappings/net/minecraft/client/gui/screen/Screen.mapping index 29ba0da98b..8abf2d7cf5 100644 --- a/mappings/net/minecraft/client/gui/screen/Screen.mapping +++ b/mappings/net/minecraft/client/gui/screen/Screen.mapping @@ -148,8 +148,8 @@ CLASS net/minecraft/unmapped/C_wrmtlwqx net/minecraft/client/gui/screen/Screen ARG 1 tooltip METHOD m_xaqeivsh init ()V COMMENT Called when a screen should be initialized. - COMMENT - COMMENT

This method is called when this screen is {@linkplain net.minecraft.client.MinecraftClient#setScreen(Screen) opened} or resized. + COMMENT

+ COMMENT This method is called when this screen is {@linkplain net.minecraft.client.MinecraftClient#setScreen(Screen) opened} or resized. METHOD m_yikydyxb clearAndInit ()V METHOD m_zatdgejs clearChildren ()V METHOD m_zycsispl narrateScreenIfNarrationEnabled (Z)V diff --git a/mappings/net/minecraft/client/gui/screen/option/KeyBindsScreen.mapping b/mappings/net/minecraft/client/gui/screen/option/KeyBindsScreen.mapping index b7262d02b9..1c81cbe1df 100644 --- a/mappings/net/minecraft/client/gui/screen/option/KeyBindsScreen.mapping +++ b/mappings/net/minecraft/client/gui/screen/option/KeyBindsScreen.mapping @@ -1,7 +1,7 @@ CLASS net/minecraft/unmapped/C_yvcflclw net/minecraft/client/gui/screen/option/KeyBindsScreen COMMENT Represents the key binds screen. - COMMENT - COMMENT

It shows a list of the registered {@link KeyBind}s with buttons to bind or reset them. + COMMENT

+ COMMENT It shows a list of the registered {@link KeyBind}s with buttons to bind or reset them. FIELD f_atjqrvvb resetAllButton Lnet/minecraft/unmapped/C_buwziidm; FIELD f_hbhgnjvk time J FIELD f_sssnfghi keyBindList Lnet/minecraft/unmapped/C_aarntxpx; diff --git a/mappings/net/minecraft/client/gui/widget/CyclingButtonWidget.mapping b/mappings/net/minecraft/client/gui/widget/CyclingButtonWidget.mapping index adf0eae99c..83c82ab20b 100644 --- a/mappings/net/minecraft/client/gui/widget/CyclingButtonWidget.mapping +++ b/mappings/net/minecraft/client/gui/widget/CyclingButtonWidget.mapping @@ -59,8 +59,8 @@ CLASS net/minecraft/unmapped/C_ikfvpkkf net/minecraft/client/gui/widget/CyclingB ARG 1 value METHOD m_vyqonlij getGenericNarrationMessage ()Lnet/minecraft/unmapped/C_npqneive; COMMENT {@return a generic narration message for this button} - COMMENT - COMMENT

If the button omits the option text in rendering, such as showing only + COMMENT

+ COMMENT If the button omits the option text in rendering, such as showing only COMMENT "Value", this narration message will still read out the option like COMMENT "Option: Value". METHOD m_wanyzkhq setValue (Ljava/lang/Object;)V @@ -101,11 +101,11 @@ CLASS net/minecraft/unmapped/C_ikfvpkkf net/minecraft/client/gui/widget/CyclingB ARG 1 values METHOD m_jippvtaa initially (Ljava/lang/Object;)Lnet/minecraft/unmapped/C_ikfvpkkf$C_djnbpyue; COMMENT Sets the initial value of this button widget. - COMMENT - COMMENT

This is not effective if {@code value} is not in the default + COMMENT

+ COMMENT This is not effective if {@code value} is not in the default COMMENT values (i.e. excluding alternative values). - COMMENT - COMMENT

If this is not called, the initial value defaults to the first + COMMENT

+ COMMENT If this is not called, the initial value defaults to the first COMMENT value in the values list supplied. ARG 1 value METHOD m_mjhejcny build (IIIILnet/minecraft/unmapped/C_rdaqiwdt;Lnet/minecraft/unmapped/C_ikfvpkkf$C_hmzkrfiv;)Lnet/minecraft/unmapped/C_ikfvpkkf; @@ -133,28 +133,28 @@ CLASS net/minecraft/unmapped/C_ikfvpkkf net/minecraft/client/gui/widget/CyclingB ARG 1 value METHOD m_okxigtfi narration (Ljava/util/function/Function;)Lnet/minecraft/unmapped/C_ikfvpkkf$C_djnbpyue; COMMENT Overrides the narration message of the button to build. - COMMENT - COMMENT

If this is not called, the button will use + COMMENT

+ COMMENT If this is not called, the button will use COMMENT {@link CyclingButtonWidget#getGenericNarrationMessage()} for narration COMMENT messages. ARG 1 narrationMessageFactory METHOD m_pgowzken tooltip (Lnet/minecraft/unmapped/C_vbibxkxv$C_msgaqezv;)Lnet/minecraft/unmapped/C_ikfvpkkf$C_djnbpyue; COMMENT Sets the tooltip factory that provides tooltips for any of the values. - COMMENT - COMMENT

If this is not called, the values simply won't have tooltips. + COMMENT

+ COMMENT If this is not called, the values simply won't have tooltips. ARG 1 tooltipSupplier METHOD m_phudjdis values (Ljava/util/List;Ljava/util/List;)Lnet/minecraft/unmapped/C_ikfvpkkf$C_djnbpyue; COMMENT Sets the option values for this button. - COMMENT - COMMENT

When the user presses the ALT key, the {@code alternatives} values + COMMENT

+ COMMENT When the user presses the ALT key, the {@code alternatives} values COMMENT will be iterated; otherwise the {@code defaults} values will be iterated COMMENT when clicking the built button. ARG 1 defaults ARG 2 alternatives METHOD m_slcrhxfa values (Ljava/util/function/BooleanSupplier;Ljava/util/List;Ljava/util/List;)Lnet/minecraft/unmapped/C_ikfvpkkf$C_djnbpyue; COMMENT Sets the option values for this button. - COMMENT - COMMENT

When {@code alternativeToggle} {@linkplain BooleanSupplier#getAsBoolean() + COMMENT

+ COMMENT When {@code alternativeToggle} {@linkplain BooleanSupplier#getAsBoolean() COMMENT getAsBoolean} returns {@code true}, the {@code alternatives} values COMMENT will be iterated; otherwise the {@code defaults} values will be iterated COMMENT when clicking the built button. diff --git a/mappings/net/minecraft/client/gui/widget/SliderWidget.mapping b/mappings/net/minecraft/client/gui/widget/SliderWidget.mapping index ddef36461a..2a8fceed82 100644 --- a/mappings/net/minecraft/client/gui/widget/SliderWidget.mapping +++ b/mappings/net/minecraft/client/gui/widget/SliderWidget.mapping @@ -26,8 +26,8 @@ CLASS net/minecraft/unmapped/C_mnmxzygo net/minecraft/client/gui/widget/SliderWi COMMENT the new value; will be clamped to {@code [0, 1]} METHOD m_idrpigjm setValueFromMouse (D)V COMMENT Sets the value from mouse position. - COMMENT - COMMENT

The value will be calculated from the position and the width of this + COMMENT

+ COMMENT The value will be calculated from the position and the width of this COMMENT slider. COMMENT COMMENT @see #setValue diff --git a/mappings/net/minecraft/client/network/PlayerListEntry.mapping b/mappings/net/minecraft/client/network/PlayerListEntry.mapping index fb3d1e850b..af804b4015 100644 --- a/mappings/net/minecraft/client/network/PlayerListEntry.mapping +++ b/mappings/net/minecraft/client/network/PlayerListEntry.mapping @@ -40,8 +40,8 @@ CLASS net/minecraft/unmapped/C_rdnfmxue net/minecraft/client/network/PlayerListE ARG 1 gameMode METHOD m_yptuueug hasSkinTexture ()Z COMMENT Checks if the player represented by this entry has a custom skin. - COMMENT - COMMENT

If the player has the default skin, this will return false. + COMMENT

+ COMMENT If the player has the default skin, this will return false. METHOD m_ztwfsbrd getVerifier (Z)Lnet/minecraft/unmapped/C_kwrnipty; ARG 0 rejectAll METHOD m_zvbnixwa hasCape ()Z diff --git a/mappings/net/minecraft/client/network/ServerInfo.mapping b/mappings/net/minecraft/client/network/ServerInfo.mapping index e0233f0c18..70289a75c3 100644 --- a/mappings/net/minecraft/client/network/ServerInfo.mapping +++ b/mappings/net/minecraft/client/network/ServerInfo.mapping @@ -30,8 +30,8 @@ CLASS net/minecraft/unmapped/C_xotldzgg net/minecraft/client/network/ServerInfo ARG 1 serverInfo METHOD m_tpvlinmq setResourcePackPolicy (Lnet/minecraft/unmapped/C_xotldzgg$C_jaeepxbv;)V COMMENT Sets the resource pack policy on this server. - COMMENT - COMMENT

This is called when a user has responded to the prompt on whether to + COMMENT

+ COMMENT This is called when a user has responded to the prompt on whether to COMMENT accept server resource packs from this server in the future. ARG 1 policy METHOD m_vlebsryp isLocal ()Z diff --git a/mappings/net/minecraft/client/option/GameOptions.mapping b/mappings/net/minecraft/client/option/GameOptions.mapping index 823c1a9346..d98e9b08d6 100644 --- a/mappings/net/minecraft/client/option/GameOptions.mapping +++ b/mappings/net/minecraft/client/option/GameOptions.mapping @@ -6,8 +6,8 @@ CLASS net/minecraft/unmapped/C_lscptbhn net/minecraft/client/option/GameOptions FIELD f_biydppgq chatLinksPrompt Lnet/minecraft/unmapped/C_vbibxkxv; FIELD f_bjoysnee allKeys [Lnet/minecraft/unmapped/C_sygikzty; COMMENT An array of all key binds. - COMMENT - COMMENT

Key binds in this array are shown and can be configured in + COMMENT

+ COMMENT Key binds in this array are shown and can be configured in COMMENT {@linkplain net.minecraft.client.gui.screen.option.KeyBindsScreen COMMENT the key binds screen}. FIELD f_buzxdsgc PRIORITIZE_CHUNK_UPDATES_BY_PLAYER_TOOLTIP Lnet/minecraft/unmapped/C_rdaqiwdt; @@ -106,8 +106,8 @@ CLASS net/minecraft/unmapped/C_lscptbhn net/minecraft/client/option/GameOptions FIELD f_mpzviopl swapHandsKey Lnet/minecraft/unmapped/C_sygikzty; COMMENT A key bind for swapping the items in the selected slot and the off hand. COMMENT Bound to {@linkplain org.lwjgl.glfw.GLFW#GLFW_KEY_F the F key} by default. - COMMENT - COMMENT

The selected slot is the slot the mouse is over when in a screen. + COMMENT

+ COMMENT The selected slot is the slot the mouse is over when in a screen. COMMENT Otherwise, it is the main hand. FIELD f_mzoblepy realmsNotifications Lnet/minecraft/unmapped/C_vbibxkxv; FIELD f_necytowf useNativeTransport Z @@ -192,8 +192,8 @@ CLASS net/minecraft/unmapped/C_lscptbhn net/minecraft/client/option/GameOptions FIELD f_vwqrmvns dropKey Lnet/minecraft/unmapped/C_sygikzty; COMMENT A key bind for dropping the item in the selected slot. COMMENT Bound to {@linkplain org.lwjgl.glfw.GLFW#GLFW_KEY_Q the Q key} by default. - COMMENT - COMMENT

The selected slot is the slot the mouse is over when in a screen. + COMMENT

+ COMMENT The selected slot is the slot the mouse is over when in a screen. COMMENT Otherwise, it is the main hand. FIELD f_vxjbgoth HIGH_CONTRAST_TOOLTIP Lnet/minecraft/unmapped/C_rdaqiwdt; FIELD f_vytbgmvp DISTORTION_EFFECT_SCALE_TOOLTIP Lnet/minecraft/unmapped/C_rdaqiwdt; @@ -394,8 +394,8 @@ CLASS net/minecraft/unmapped/C_lscptbhn net/minecraft/client/option/GameOptions METHOD m_mdleexkw sendClientSettings ()V COMMENT Sends the current client settings to the server if the client is COMMENT connected to a server. - COMMENT - COMMENT

Called when a player joins the game or when client settings are + COMMENT

+ COMMENT Called when a player joins the game or when client settings are COMMENT changed. METHOD m_mgaujdlu (Ljava/lang/Boolean;)V ARG 0 value diff --git a/mappings/net/minecraft/client/option/KeyBind.mapping b/mappings/net/minecraft/client/option/KeyBind.mapping index 91eaf69890..a19cd07d17 100644 --- a/mappings/net/minecraft/client/option/KeyBind.mapping +++ b/mappings/net/minecraft/client/option/KeyBind.mapping @@ -35,8 +35,8 @@ CLASS net/minecraft/unmapped/C_sygikzty net/minecraft/client/option/KeyBind METHOD m_gaavbsyf getKeyTranslationKey ()Ljava/lang/String; METHOD m_getjkdwe isPressed ()Z COMMENT {@return if the key is being held down} - COMMENT - COMMENT

Note that if you are continuously calling this method (like every + COMMENT

+ COMMENT Note that if you are continuously calling this method (like every COMMENT tick), it doesn't always catch all key presses. This is because the key COMMENT can be pressed and released before the next check. COMMENT @@ -61,12 +61,12 @@ CLASS net/minecraft/unmapped/C_sygikzty net/minecraft/client/option/KeyBind METHOD m_vakxsktj getTranslationKey ()Ljava/lang/String; METHOD m_vnukpaip wasPressed ()Z COMMENT {@return if the key was pressed} - COMMENT - COMMENT

A key bind counts the number of times the key is pressed. This + COMMENT

+ COMMENT A key bind counts the number of times the key is pressed. This COMMENT method "consumes" it and returns {@code true} as many times as the key COMMENT is pressed. - COMMENT - COMMENT

To consume all remaining key presses, while-loop idiom can be used: + COMMENT

+ COMMENT To consume all remaining key presses, while-loop idiom can be used: COMMENT

 		COMMENT {@code
 		COMMENT while(keyBind.wasPressed()) {
diff --git a/mappings/net/minecraft/client/particle/Particle.mapping b/mappings/net/minecraft/client/particle/Particle.mapping
index a3811400c2..82980538ae 100644
--- a/mappings/net/minecraft/client/particle/Particle.mapping
+++ b/mappings/net/minecraft/client/particle/Particle.mapping
@@ -63,8 +63,8 @@ CLASS net/minecraft/unmapped/C_pfsoguef net/minecraft/client/particle/Particle
 		ARG 5 dz
 	METHOD m_incxjory getGroup ()Ljava/util/Optional;
 		COMMENT {@return the optional group that this particle belongs to}
-		COMMENT
-		COMMENT 

A particle group restricts the number of particles from the group that + COMMENT

+ COMMENT A particle group restricts the number of particles from the group that COMMENT can be rendered in a client world. If the particle does not have a group, COMMENT it is not restricted. METHOD m_jzlsoaso setPos (DDD)V diff --git a/mappings/net/minecraft/client/render/WorldRenderer.mapping b/mappings/net/minecraft/client/render/WorldRenderer.mapping index fd0cd232a0..ef4730d603 100644 --- a/mappings/net/minecraft/client/render/WorldRenderer.mapping +++ b/mappings/net/minecraft/client/render/WorldRenderer.mapping @@ -181,8 +181,8 @@ CLASS net/minecraft/unmapped/C_sfkkabhx net/minecraft/client/render/WorldRendere METHOD m_euimsinz drawBox (Lnet/minecraft/unmapped/C_cnszsxvd;Lnet/minecraft/unmapped/C_igthdzux;DDDDDDFFFFFFF)V COMMENT Draws a box spanning from [x1,y1,z1] to [x2,y2,z2]. COMMENT The 3 axes centered at [x1,y1,z1] may be colored differently using xAxisRed, yAxisGreen, and zAxisBlue. - COMMENT - COMMENT

Note the coordinates the box spans are relative to current translation of the matrices. + COMMENT

+ COMMENT Note the coordinates the box spans are relative to current translation of the matrices. ARG 0 matrices ARG 1 vertexConsumer ARG 2 x1 @@ -256,8 +256,8 @@ CLASS net/minecraft/unmapped/C_sfkkabhx net/minecraft/client/render/WorldRendere ARG 14 velocityZ METHOD m_jrnetmpf drawBox (Lnet/minecraft/unmapped/C_cnszsxvd;Lnet/minecraft/unmapped/C_igthdzux;Lnet/minecraft/unmapped/C_hbcjzgoe;FFFF)V COMMENT Draws a box. - COMMENT - COMMENT

Note the coordinates the box spans are relative to current translation of the matrices. + COMMENT

+ COMMENT Note the coordinates the box spans are relative to current translation of the matrices. ARG 0 matrices ARG 1 vertexConsumer ARG 2 box @@ -452,8 +452,8 @@ CLASS net/minecraft/unmapped/C_sfkkabhx net/minecraft/client/render/WorldRendere METHOD m_ydwujepn resetTransparencyShader ()V METHOD m_yjjzthga drawBox (Lnet/minecraft/unmapped/C_cnszsxvd;Lnet/minecraft/unmapped/C_igthdzux;DDDDDDFFFF)V COMMENT Draws a box spanning from [x1,y1,z1] to [x2,y2,z2]. - COMMENT - COMMENT

Note the coordinates the box spans are relative to current translation of the matrices. + COMMENT

+ COMMENT Note the coordinates the box spans are relative to current translation of the matrices. ARG 0 matrices ARG 1 vertexConsumer ARG 2 x1 diff --git a/mappings/net/minecraft/client/render/entity/EntityRenderer.mapping b/mappings/net/minecraft/client/render/entity/EntityRenderer.mapping index 08e4949c18..8f16aedfc6 100644 --- a/mappings/net/minecraft/client/render/entity/EntityRenderer.mapping +++ b/mappings/net/minecraft/client/render/entity/EntityRenderer.mapping @@ -32,8 +32,8 @@ CLASS net/minecraft/unmapped/C_oddtxnnw net/minecraft/client/render/entity/Entit ARG 5 light METHOD m_mgbpairl hasLabel (Lnet/minecraft/unmapped/C_astfners;)Z COMMENT Determines whether the passed entity should render with a nameplate above its head. - COMMENT - COMMENT

Checks for a custom nametag on living entities, and for teams/team visibilities for players. + COMMENT

+ COMMENT Checks for a custom nametag on living entities, and for teams/team visibilities for players. ARG 1 entity METHOD m_mxozdffx getSkyLight (Lnet/minecraft/unmapped/C_astfners;Lnet/minecraft/unmapped/C_hynzadkk;)I ARG 1 entity diff --git a/mappings/net/minecraft/client/render/entity/model/BeeEntityModel.mapping b/mappings/net/minecraft/client/render/entity/model/BeeEntityModel.mapping index c4599b2824..3f8c02bb02 100644 --- a/mappings/net/minecraft/client/render/entity/model/BeeEntityModel.mapping +++ b/mappings/net/minecraft/client/render/entity/model/BeeEntityModel.mapping @@ -53,8 +53,8 @@ CLASS net/minecraft/unmapped/C_jijccysy net/minecraft/client/render/entity/model COMMENT The key of the stinger model part, whose value is {@value}. FIELD f_losszons BONE Ljava/lang/String; COMMENT The key of the bone model part, whose value is {@value}. - COMMENT - COMMENT

The bone is an invisible model part which is used to globally control the model. + COMMENT

+ COMMENT The bone is an invisible model part which is used to globally control the model. FIELD f_luymjifz frontLegs Lnet/minecraft/unmapped/C_rglqxnbw; FIELD f_mroxqhyd middleLegs Lnet/minecraft/unmapped/C_rglqxnbw; FIELD f_ofsyairl stinger Lnet/minecraft/unmapped/C_rglqxnbw; diff --git a/mappings/net/minecraft/client/render/entity/model/CatEntityModel.mapping b/mappings/net/minecraft/client/render/entity/model/CatEntityModel.mapping index bf1044fbdc..584a4c350f 100644 --- a/mappings/net/minecraft/client/render/entity/model/CatEntityModel.mapping +++ b/mappings/net/minecraft/client/render/entity/model/CatEntityModel.mapping @@ -1,7 +1,7 @@ CLASS net/minecraft/unmapped/C_zuutbrxn net/minecraft/client/render/entity/model/CatEntityModel COMMENT Represents the model of a {@linkplain CatEntity}. - COMMENT - COMMENT

Inherits the {@link OcelotEntityModel}. + COMMENT

+ COMMENT Inherits the {@link OcelotEntityModel}. FIELD f_scjdrlkw sleepAnimation F FIELD f_womsuzvj tailCurlAnimation F FIELD f_xebytxga headDownAnimation F diff --git a/mappings/net/minecraft/client/render/entity/model/EndermanEntityModel.mapping b/mappings/net/minecraft/client/render/entity/model/EndermanEntityModel.mapping index 3d2dee49b1..b161963606 100644 --- a/mappings/net/minecraft/client/render/entity/model/EndermanEntityModel.mapping +++ b/mappings/net/minecraft/client/render/entity/model/EndermanEntityModel.mapping @@ -1,7 +1,7 @@ CLASS net/minecraft/unmapped/C_swjzzhbq net/minecraft/client/render/entity/model/EndermanEntityModel COMMENT Represents the model of an enderman-like living entity. - COMMENT - COMMENT

The model parts are the same as a {@link BipedEntityModel} but with different proportions. + COMMENT

+ COMMENT The model parts are the same as a {@link BipedEntityModel} but with different proportions. COMMENT COMMENT

COMMENT diff --git a/mappings/net/minecraft/client/render/entity/model/EntityModel.mapping b/mappings/net/minecraft/client/render/entity/model/EntityModel.mapping index 71f74b9883..baec95309b 100644 --- a/mappings/net/minecraft/client/render/entity/model/EntityModel.mapping +++ b/mappings/net/minecraft/client/render/entity/model/EntityModel.mapping @@ -1,13 +1,13 @@ CLASS net/minecraft/unmapped/C_fouvqrqy net/minecraft/client/render/entity/model/EntityModel COMMENT Represents the model of an {@linkplain Entity}. - COMMENT - COMMENT

An instance of an entity model will not define the model data, + COMMENT

+ COMMENT An instance of an entity model will not define the model data, COMMENT but will animate it. COMMENT Model data may be defined in a static method, most of the children classes will COMMENT have a {@code getTexturedModelData} method. COMMENT The model data is usually passed in the constructor of the entity model. - COMMENT - COMMENT

Some children classes contain a model parts table, those tables contains + COMMENT

+ COMMENT Some children classes contain a model parts table, those tables contains COMMENT the model parts for the base model. In a modded context the tables may be COMMENT inaccurate. Model parts with an associated field are required. FIELD f_ftjeyqya child Z diff --git a/mappings/net/minecraft/client/render/entity/model/GiantEntityModel.mapping b/mappings/net/minecraft/client/render/entity/model/GiantEntityModel.mapping index 0a546d1ab3..4efbae0e9c 100644 --- a/mappings/net/minecraft/client/render/entity/model/GiantEntityModel.mapping +++ b/mappings/net/minecraft/client/render/entity/model/GiantEntityModel.mapping @@ -1,4 +1,4 @@ CLASS net/minecraft/unmapped/C_lectivwm net/minecraft/client/render/entity/model/GiantEntityModel COMMENT Represents the model of a {@linkplain GiantEntity}. - COMMENT - COMMENT

Inherits the model of {@link AbstractZombieModel}. + COMMENT

+ COMMENT Inherits the model of {@link AbstractZombieModel}. diff --git a/mappings/net/minecraft/client/render/entity/model/PigEntityModel.mapping b/mappings/net/minecraft/client/render/entity/model/PigEntityModel.mapping index adb6ef561e..2d99c54bb8 100644 --- a/mappings/net/minecraft/client/render/entity/model/PigEntityModel.mapping +++ b/mappings/net/minecraft/client/render/entity/model/PigEntityModel.mapping @@ -1,7 +1,7 @@ CLASS net/minecraft/unmapped/C_nkqrxmdd net/minecraft/client/render/entity/model/PigEntityModel COMMENT Represents the model of a pig-like entity. - COMMENT - COMMENT

{@inheritDoc} + COMMENT

+ COMMENT {@inheritDoc} METHOD (Lnet/minecraft/unmapped/C_rglqxnbw;)V ARG 1 root METHOD m_lznbitqn getTexturedModelData (Lnet/minecraft/unmapped/C_kzsbkpiu;)Lnet/minecraft/unmapped/C_ybmhebgt; diff --git a/mappings/net/minecraft/client/search/SuffixArray.mapping b/mappings/net/minecraft/client/search/SuffixArray.mapping index 9e672d17be..f2c7cabf05 100644 --- a/mappings/net/minecraft/client/search/SuffixArray.mapping +++ b/mappings/net/minecraft/client/search/SuffixArray.mapping @@ -16,28 +16,28 @@ CLASS net/minecraft/unmapped/C_eyvsctee net/minecraft/client/search/SuffixArray ARG 2 suffixIndex METHOD m_dbyafjwq findAll (Ljava/lang/String;)Ljava/util/List; COMMENT Retrieves all objects of which corresponding texts contain {@code text}. - COMMENT - COMMENT

You have to call {@link #build()} method before calling this method. - COMMENT - COMMENT

Takes O({@code text.length()} * log N) time to find objects where N is the + COMMENT

+ COMMENT You have to call {@link #build()} method before calling this method. + COMMENT

+ COMMENT Takes O({@code text.length()} * log N) time to find objects where N is the COMMENT sum of all text length added. Takes O(X + Y * log Y) time to collect found COMMENT objects into a list where X is the number of occurrences of {@code text} in all COMMENT texts added, and Y is the number of found objects. ARG 1 text METHOD m_gmnjmpms build ()V COMMENT Builds a suffix array with added texts. - COMMENT - COMMENT

You are not allowed to call this method multiple times. - COMMENT - COMMENT

Takes O(N * log N * log M) time on average where N is the sum of all text + COMMENT

+ COMMENT You are not allowed to call this method multiple times. + COMMENT

+ COMMENT Takes O(N * log N * log M) time on average where N is the sum of all text COMMENT length added, and M is the maximum text length added. METHOD m_kbfrkrwy printArray ()V METHOD m_kgforyou add (Ljava/lang/Object;Ljava/lang/String;)V COMMENT Adds a text with the corresponding object. - COMMENT - COMMENT

You are not allowed to call this method after calling {@link #build()} method. - COMMENT - COMMENT

Takes O({@code text.length()}) time. + COMMENT

+ COMMENT You are not allowed to call this method after calling {@link #build()} method. + COMMENT

+ COMMENT Takes O({@code text.length()}) time. ARG 1 object ARG 2 text METHOD m_pexussdc ([I[III)I diff --git a/mappings/net/minecraft/data/client/model/PropertiesMap.mapping b/mappings/net/minecraft/data/client/model/PropertiesMap.mapping index 97857f6ebb..234e57e8f4 100644 --- a/mappings/net/minecraft/data/client/model/PropertiesMap.mapping +++ b/mappings/net/minecraft/data/client/model/PropertiesMap.mapping @@ -1,8 +1,8 @@ CLASS net/minecraft/unmapped/C_qxryqtgn net/minecraft/data/client/model/PropertiesMap COMMENT Represents a set of property to value pairs, used as conditions for model COMMENT application. - COMMENT - COMMENT

This object is immutable. + COMMENT

+ COMMENT This object is immutable. FIELD f_cdncvqex COMPARATOR Ljava/util/Comparator; FIELD f_gegvnydi values Ljava/util/List; FIELD f_zzhexfyv EMPTY Lnet/minecraft/unmapped/C_qxryqtgn; diff --git a/mappings/net/minecraft/data/client/model/VariantsBlockStateSupplier.mapping b/mappings/net/minecraft/data/client/model/VariantsBlockStateSupplier.mapping index 5bacef24b5..26d37a2f0f 100644 --- a/mappings/net/minecraft/data/client/model/VariantsBlockStateSupplier.mapping +++ b/mappings/net/minecraft/data/client/model/VariantsBlockStateSupplier.mapping @@ -20,8 +20,8 @@ CLASS net/minecraft/unmapped/C_ufuguevl net/minecraft/data/client/model/Variants ARG 1 variant METHOD m_klsizoja coordinate (Lnet/minecraft/unmapped/C_ujotlecn;)Lnet/minecraft/unmapped/C_ufuguevl; COMMENT Appends a block state variant map to this block state information. - COMMENT - COMMENT

A block state variant map defines some of the variant settings based + COMMENT

+ COMMENT A block state variant map defines some of the variant settings based COMMENT on a defined set of properties in the block state, such as the model COMMENT of the block state is determined by a coordinated map of power and COMMENT machine type property, and the y rotation determined by a facing diff --git a/mappings/net/minecraft/data/server/RecipesProvider.mapping b/mappings/net/minecraft/data/server/RecipesProvider.mapping index cc7880a73a..3d0ac3ace3 100644 --- a/mappings/net/minecraft/data/server/RecipesProvider.mapping +++ b/mappings/net/minecraft/data/server/RecipesProvider.mapping @@ -177,11 +177,11 @@ CLASS net/minecraft/unmapped/C_hwlnmobw net/minecraft/data/server/RecipesProvide ARG 4 outputCount METHOD m_kekvugqk getVariantRecipeInput (Lnet/minecraft/unmapped/C_eonlnchv;Lnet/minecraft/unmapped/C_eonlnchv$C_gtxnbiam;)Lnet/minecraft/unmapped/C_mmxmpdoq; COMMENT Gets the block used to craft a certain {@linkplain net.minecraft.data.family.BlockFamily.Variant variant} of a base block. - COMMENT - COMMENT

Normally, the block used to craft a variant is the base block. + COMMENT

+ COMMENT Normally, the block used to craft a variant is the base block. COMMENT For chiseled variants, this is the slab variant of that block. - COMMENT - COMMENT

Purpur is handled separately because both purpur and purpur pillars can be used to craft purpur slabs and stairs. + COMMENT

+ COMMENT Purpur is handled separately because both purpur and purpur pillars can be used to craft purpur slabs and stairs. ARG 0 family ARG 1 variant METHOD m_kpajmpho (Lnet/minecraft/unmapped/C_gmbqjnle;Lnet/minecraft/unmapped/C_gmbqjnle;)Lnet/minecraft/unmapped/C_ybcoihxg; diff --git a/mappings/net/minecraft/datafixer/TypeReferences.mapping b/mappings/net/minecraft/datafixer/TypeReferences.mapping index daf8c9fd56..d673149059 100644 --- a/mappings/net/minecraft/datafixer/TypeReferences.mapping +++ b/mappings/net/minecraft/datafixer/TypeReferences.mapping @@ -14,12 +14,12 @@ CLASS net/minecraft/unmapped/C_rodgceaz net/minecraft/datafixer/TypeReferences COMMENT A type reference which refers to an item stack. FIELD f_jgpiqjom ENTITY_TREE Lcom/mojang/datafixers/DSL$TypeReference; COMMENT A type reference which refers to an entity tree. - COMMENT - COMMENT

An entity tree contains the passengers of an entity and their passengers. + COMMENT

+ COMMENT An entity tree contains the passengers of an entity and their passengers. FIELD f_jjtyvuvs HOTBAR Lcom/mojang/datafixers/DSL$TypeReference; COMMENT A type reference which refers to the saved creative hotbars. - COMMENT - COMMENT

This type reference is only used on the client. + COMMENT

+ COMMENT This type reference is only used on the client. FIELD f_kmwbnjyb BLOCK_ENTITY Lcom/mojang/datafixers/DSL$TypeReference; COMMENT A type reference which refers to a block entity. FIELD f_ktucdcfz ENTITY_NAME Lcom/mojang/datafixers/DSL$TypeReference; diff --git a/mappings/net/minecraft/datafixer/fix/ArrowPickupFix.mapping b/mappings/net/minecraft/datafixer/fix/ArrowPickupFix.mapping index d4d9fc7196..fc345979fe 100644 --- a/mappings/net/minecraft/datafixer/fix/ArrowPickupFix.mapping +++ b/mappings/net/minecraft/datafixer/fix/ArrowPickupFix.mapping @@ -1,8 +1,8 @@ CLASS net/minecraft/unmapped/C_rhyvwssg net/minecraft/datafixer/fix/ArrowPickupFix COMMENT A fix that automatically renames the {@code player} byte in arrow data to COMMENT {@code pickup}, if there is not any existing {@code pickup} data. - COMMENT - COMMENT

This is known as {@index AbstractArrowPickupFix} in the literal + COMMENT

+ COMMENT This is known as {@index AbstractArrowPickupFix} in the literal COMMENT string, though this fix is not abstract. METHOD (Lcom/mojang/datafixers/schemas/Schema;)V ARG 1 outputSchema diff --git a/mappings/net/minecraft/datafixer/fix/StructureFeatureChildrenPoolElementFix.mapping b/mappings/net/minecraft/datafixer/fix/StructureFeatureChildrenPoolElementFix.mapping index 8dd5b6b96a..9bd3bcde1e 100644 --- a/mappings/net/minecraft/datafixer/fix/StructureFeatureChildrenPoolElementFix.mapping +++ b/mappings/net/minecraft/datafixer/fix/StructureFeatureChildrenPoolElementFix.mapping @@ -1,8 +1,8 @@ CLASS net/minecraft/unmapped/C_knlsdgxy net/minecraft/datafixer/fix/StructureFeatureChildrenPoolElementFix COMMENT A fix that updates a few children pool element features with complex COMMENT configurations to simple ID strings within structure features. - COMMENT - COMMENT

This is known as {@index SavedDataFeaturePoolElementFix} in the + COMMENT

+ COMMENT This is known as {@index SavedDataFeaturePoolElementFix} in the COMMENT literal strings. FIELD f_cmzaacpl TARGET_CHILDREN_IDS Ljava/util/Set; FIELD f_kdmomzkd TARGET_FEATURES Ljava/util/Set; diff --git a/mappings/net/minecraft/enchantment/Enchantment.mapping b/mappings/net/minecraft/enchantment/Enchantment.mapping index 1601862aac..22f8469c6b 100644 --- a/mappings/net/minecraft/enchantment/Enchantment.mapping +++ b/mappings/net/minecraft/enchantment/Enchantment.mapping @@ -76,8 +76,8 @@ CLASS net/minecraft/unmapped/C_jxtrubuh net/minecraft/enchantment/Enchantment ARG 2 source CLASS C_dnkiztld Rarity COMMENT The rarity is an attribute of an enchantment. - COMMENT - COMMENT

It affects the chance of getting an enchantment from enchanting or + COMMENT

+ COMMENT It affects the chance of getting an enchantment from enchanting or COMMENT loots as well as the combination cost in anvil. FIELD f_yjqkjiph weight I METHOD (Ljava/lang/String;II)V diff --git a/mappings/net/minecraft/enchantment/EnchantmentHelper.mapping b/mappings/net/minecraft/enchantment/EnchantmentHelper.mapping index eec6bcf1c7..d405c75566 100644 --- a/mappings/net/minecraft/enchantment/EnchantmentHelper.mapping +++ b/mappings/net/minecraft/enchantment/EnchantmentHelper.mapping @@ -76,8 +76,8 @@ CLASS net/minecraft/unmapped/C_jakrppis net/minecraft/enchantment/EnchantmentHel COMMENT {@return a pair of an equipment slot and the item stack in the supplied COMMENT entity's slot} It indicates the item stack has the enchantment supplied COMMENT and fulfills the extra condition. - COMMENT - COMMENT

If multiple equipment slots' item stacks are valid, a random pair is + COMMENT

+ COMMENT If multiple equipment slots' item stacks are valid, a random pair is COMMENT returned. ARG 0 enchantment COMMENT the enchantment the equipped item stack must have @@ -100,8 +100,8 @@ CLASS net/minecraft/unmapped/C_jakrppis net/minecraft/enchantment/EnchantmentHel ARG 0 stack METHOD m_nvnojfze get (Lnet/minecraft/unmapped/C_sddaxwyk;)Ljava/util/Map; COMMENT Gets the enchantments on an item stack. - COMMENT - COMMENT

For enchanted books, it retrieves from the item stack's stored than + COMMENT

+ COMMENT For enchanted books, it retrieves from the item stack's stored than COMMENT regular enchantments. COMMENT COMMENT @see ItemStack#getEnchantments() @@ -160,8 +160,8 @@ CLASS net/minecraft/unmapped/C_jakrppis net/minecraft/enchantment/EnchantmentHel ARG 2 enchantment METHOD m_ybhxtwqv set (Ljava/util/Map;Lnet/minecraft/unmapped/C_sddaxwyk;)V COMMENT Sets the enchantments on an item stack. - COMMENT - COMMENT

For enchanted books, it sets the enchantments to the item stack's + COMMENT

+ COMMENT For enchanted books, it sets the enchantments to the item stack's COMMENT stored enchantments than regular enchantments. COMMENT COMMENT @see ItemStack#getEnchantments() @@ -171,8 +171,8 @@ CLASS net/minecraft/unmapped/C_jakrppis net/minecraft/enchantment/EnchantmentHel METHOD m_ymaphuvh chooseEquipmentWith (Lnet/minecraft/unmapped/C_jxtrubuh;Lnet/minecraft/unmapped/C_usxaxydn;)Ljava/util/Map$Entry; COMMENT {@return a pair of an equipment slot and the item stack in the supplied COMMENT entity's slot} It indicates the item stack has the enchantment supplied. - COMMENT - COMMENT

If multiple equipment slots' item stacks are valid, a random pair is + COMMENT

+ COMMENT If multiple equipment slots' item stacks are valid, a random pair is COMMENT returned. ARG 0 enchantment COMMENT the enchantment the equipped item stack must have diff --git a/mappings/net/minecraft/enchantment/EnchantmentLevelEntry.mapping b/mappings/net/minecraft/enchantment/EnchantmentLevelEntry.mapping index 3e6d5e95c8..642841200b 100644 --- a/mappings/net/minecraft/enchantment/EnchantmentLevelEntry.mapping +++ b/mappings/net/minecraft/enchantment/EnchantmentLevelEntry.mapping @@ -2,12 +2,12 @@ CLASS net/minecraft/unmapped/C_gsnkkurc net/minecraft/enchantment/EnchantmentLev COMMENT Represents an entry in an enchantments array, i.e. a pair between COMMENT enchantment and level. This is also a weighted entry and is available COMMENT for the weighted picker to pick from a list. - COMMENT - COMMENT

This is usually used where multiple enchantment to level mappings can + COMMENT

+ COMMENT This is usually used where multiple enchantment to level mappings can COMMENT exist, such as in enchanting logic. In other cases, vanilla prefers COMMENT {@code Map} over {@code List}. - COMMENT - COMMENT

This class is immutable. It does not override hashCode or equals. + COMMENT

+ COMMENT This class is immutable. It does not override hashCode or equals. FIELD f_otdtqrqd level I FIELD f_ykbaoghe enchantment Lnet/minecraft/unmapped/C_jxtrubuh; METHOD (Lnet/minecraft/unmapped/C_jxtrubuh;I)V diff --git a/mappings/net/minecraft/entity/Entity.mapping b/mappings/net/minecraft/entity/Entity.mapping index bd50adfcc0..8326b63cab 100644 --- a/mappings/net/minecraft/entity/Entity.mapping +++ b/mappings/net/minecraft/entity/Entity.mapping @@ -518,10 +518,10 @@ CLASS net/minecraft/unmapped/C_astfners net/minecraft/entity/Entity ARG 1 player METHOD m_lojynppf applyDamageEffects (Lnet/minecraft/unmapped/C_usxaxydn;Lnet/minecraft/unmapped/C_astfners;)V COMMENT Applies damage effects to {@code attacker} or {@code target}. - COMMENT - COMMENT

Called when {@code attacker} damages {@code target}. - COMMENT - COMMENT

Used to apply damage effects based on enchantments, such + COMMENT

+ COMMENT Called when {@code attacker} damages {@code target}. + COMMENT

+ COMMENT Used to apply damage effects based on enchantments, such COMMENT as Thorns attacker damage or slowness from Bane of Arthropods. COMMENT COMMENT @implNote Although this method is non-static, {@code this} keyword is diff --git a/mappings/net/minecraft/entity/EntityType.mapping b/mappings/net/minecraft/entity/EntityType.mapping index 64baa35dcc..06d913e990 100644 --- a/mappings/net/minecraft/entity/EntityType.mapping +++ b/mappings/net/minecraft/entity/EntityType.mapping @@ -164,8 +164,8 @@ CLASS net/minecraft/unmapped/C_ogavsvbr net/minecraft/entity/EntityType COMMENT Allows this type of entity to spawn inside the given block, bypassing the default COMMENT wither rose, sweet berry bush, cactus, and fire-damage-dealing blocks for COMMENT non-fire-resistant mobs. - COMMENT - COMMENT

{@code minecraft:prevent_mob_spawning_inside} tag overrides this. + COMMENT

+ COMMENT {@code minecraft:prevent_mob_spawning_inside} tag overrides this. COMMENT With this setting, fire resistant mobs can spawn on/in fire damage dealing blocks, COMMENT and wither skeletons can spawn in wither roses. If a block added is not in the default COMMENT blacklist, the addition has no effect. diff --git a/mappings/net/minecraft/entity/ItemEntity.mapping b/mappings/net/minecraft/entity/ItemEntity.mapping index 46250b0f67..a5b5e75427 100644 --- a/mappings/net/minecraft/entity/ItemEntity.mapping +++ b/mappings/net/minecraft/entity/ItemEntity.mapping @@ -5,8 +5,8 @@ CLASS net/minecraft/unmapped/C_uqpzijng net/minecraft/entity/ItemEntity FIELD f_putrlmep itemAge I COMMENT The number of ticks since this item entity has been created. COMMENT It is a short value with key {@code Age} in the NBT structure. - COMMENT - COMMENT

It differs from {@link Entity#age}. + COMMENT

+ COMMENT It differs from {@link Entity#age}. FIELD f_rpzokhnb STACK Lnet/minecraft/unmapped/C_rinmcaxy; FIELD f_tymizycm owner Ljava/util/UUID; FIELD f_wmbwxvah uniqueOffset F @@ -38,11 +38,11 @@ CLASS net/minecraft/unmapped/C_uqpzijng net/minecraft/entity/ItemEntity COMMENT than 0. METHOD m_iiflfwjq getItemAge ()I COMMENT Returns the number of ticks since this item entity has been created. - COMMENT - COMMENT

Increases every tick. When it equals to 6000 ticks (5 minutes), + COMMENT

+ COMMENT Increases every tick. When it equals to 6000 ticks (5 minutes), COMMENT this item entity disappears. - COMMENT - COMMENT

Unlike {@linkplain Entity#age}, it is persistent and not synchronized + COMMENT

+ COMMENT Unlike {@linkplain Entity#age}, it is persistent and not synchronized COMMENT between the client and the server. COMMENT COMMENT @see #tick() diff --git a/mappings/net/minecraft/entity/LivingEntity.mapping b/mappings/net/minecraft/entity/LivingEntity.mapping index 1ecb86bdfd..f82832dee6 100644 --- a/mappings/net/minecraft/entity/LivingEntity.mapping +++ b/mappings/net/minecraft/entity/LivingEntity.mapping @@ -122,8 +122,8 @@ CLASS net/minecraft/unmapped/C_usxaxydn net/minecraft/entity/LivingEntity ARG 1 hand METHOD m_bftuqrdn onKilledBy (Lnet/minecraft/unmapped/C_usxaxydn;)V COMMENT Performs secondary effects after this mob has been killed. - COMMENT - COMMENT

The default behavior spawns a wither rose if {@code adversary} is a {@code WitherEntity}. + COMMENT

+ COMMENT The default behavior spawns a wither rose if {@code adversary} is a {@code WitherEntity}. ARG 1 adversary COMMENT the main adversary responsible for this entity's death METHOD m_bgivxowi getEquipmentSlot (I)Lnet/minecraft/unmapped/C_yuycoehb; @@ -186,8 +186,8 @@ CLASS net/minecraft/unmapped/C_usxaxydn net/minecraft/entity/LivingEntity METHOD m_ejiuyguk isFallFlying ()Z METHOD m_eljjwntg setStatusEffect (Lnet/minecraft/unmapped/C_wpfizwve;Lnet/minecraft/unmapped/C_astfners;)V COMMENT Sets a status effect in this entity. - COMMENT - COMMENT

The preexistent status effect of the same type on this entity, if there is one, is cleared. + COMMENT

+ COMMENT The preexistent status effect of the same type on this entity, if there is one, is cleared. COMMENT To actually add a status effect and undergo effect combination logic, call COMMENT {@link #addStatusEffect(StatusEffectInstance, Entity)}. COMMENT @@ -201,8 +201,8 @@ CLASS net/minecraft/unmapped/C_usxaxydn net/minecraft/entity/LivingEntity COMMENT the source entity or {@code null} for non-entity sources METHOD m_eobwecax dropXp ()V COMMENT Drops experience when this entity is killed. - COMMENT - COMMENT

To control the details of experience dropping, consider overriding + COMMENT

+ COMMENT To control the details of experience dropping, consider overriding COMMENT {@link #shouldAlwaysDropXp()}, {@link #shouldDropXp()}, and COMMENT {@link #getXpToDrop()}. METHOD m_epkzhkqg deserializeBrain (Lcom/mojang/serialization/Dynamic;)Lnet/minecraft/unmapped/C_rjqjaxef; @@ -238,8 +238,8 @@ CLASS net/minecraft/unmapped/C_usxaxydn net/minecraft/entity/LivingEntity METHOD m_gmbpcsgg removeSoulSpeedBoost ()V METHOD m_gmtlgjgb removeStatusEffectInternal (Lnet/minecraft/unmapped/C_jaqasomh;)Lnet/minecraft/unmapped/C_wpfizwve; COMMENT Removes a status effect from this entity without calling any listener. - COMMENT - COMMENT

This method does not perform any cleanup or synchronization operation. + COMMENT

+ COMMENT This method does not perform any cleanup or synchronization operation. COMMENT Under most circumstances, calling {@link #removeStatusEffect(StatusEffect)} is highly preferable. COMMENT COMMENT @return the status effect removed @@ -378,8 +378,8 @@ CLASS net/minecraft/unmapped/C_usxaxydn net/minecraft/entity/LivingEntity ARG 1 source METHOD m_mqaxmsqu isHolding (Ljava/util/function/Predicate;)Z COMMENT Checks if this entity is holding a certain item. - COMMENT - COMMENT

This checks both the entity's main and off hand. + COMMENT

+ COMMENT This checks both the entity's main and off hand. ARG 1 predicate METHOD m_mzepiaxw getControlledMovementInput (Lnet/minecraft/unmapped/C_jzrpycqo;Lnet/minecraft/unmapped/C_vgpupfxx;)Lnet/minecraft/unmapped/C_vgpupfxx; COMMENT Returns the movement input when this entity is controlled by a player. @@ -424,8 +424,8 @@ CLASS net/minecraft/unmapped/C_usxaxydn net/minecraft/entity/LivingEntity ARG 2 headRotation METHOD m_pdfqoxex travel (Lnet/minecraft/unmapped/C_vgpupfxx;)V COMMENT Allows you to do certain speed and velocity calculations. This is useful for custom vehicle behavior, or custom entity movement. This is not to be confused with AI. - COMMENT - COMMENT

See vanilla examples of {@linkplain net.minecraft.entity.passive.HorseBaseEntity#travel + COMMENT

+ COMMENT See vanilla examples of {@linkplain net.minecraft.entity.passive.HorseBaseEntity#travel COMMENT custom horse vehicle} and {@linkplain net.minecraft.entity.mob.FlyingEntity#travel COMMENT flying entities}. ARG 1 movementInput @@ -502,8 +502,8 @@ CLASS net/minecraft/unmapped/C_usxaxydn net/minecraft/entity/LivingEntity METHOD m_tfzujjwm shouldSwimInFluids ()Z METHOD m_tgtyxces isHolding (Lnet/minecraft/unmapped/C_vorddnax;)Z COMMENT Checks if this entity is holding a certain item. - COMMENT - COMMENT

This checks both the entity's main and off hand. + COMMENT

+ COMMENT This checks both the entity's main and off hand. ARG 1 item METHOD m_thnidwgf canTarget (Lnet/minecraft/unmapped/C_ogavsvbr;)Z ARG 1 type @@ -540,8 +540,8 @@ CLASS net/minecraft/unmapped/C_usxaxydn net/minecraft/entity/LivingEntity ARG 0 player METHOD m_vchrqjlb addStatusEffect (Lnet/minecraft/unmapped/C_wpfizwve;)Z COMMENT Adds a status effect to this entity without specifying a source entity. - COMMENT - COMMENT

Consider calling {@link #addStatusEffect(StatusEffectInstance, Entity)} + COMMENT

+ COMMENT Consider calling {@link #addStatusEffect(StatusEffectInstance, Entity)} COMMENT if the {@code effect} is caused by or from an entity. COMMENT COMMENT @return whether the active status effects of this entity has been modified @@ -611,8 +611,8 @@ CLASS net/minecraft/unmapped/C_usxaxydn net/minecraft/entity/LivingEntity METHOD m_xuxedegf isBaby ()Z METHOD m_xzvpzpbu removeStatusEffect (Lnet/minecraft/unmapped/C_jaqasomh;)Z COMMENT Removes a status effect from this entity. - COMMENT - COMMENT

Calling this method will call cleanup methods on the status effect and trigger synchronization of effect particles with watching clients. If this entity is a player, + COMMENT

+ COMMENT Calling this method will call cleanup methods on the status effect and trigger synchronization of effect particles with watching clients. If this entity is a player, COMMENT the change in the list of effects will also be synchronized with the corresponding client. COMMENT COMMENT @return whether the active status effects on this entity has been changed by @@ -621,8 +621,8 @@ CLASS net/minecraft/unmapped/C_usxaxydn net/minecraft/entity/LivingEntity METHOD m_yanqzhib getXpToDrop ()I COMMENT Called when this entity is killed and returns the amount of experience COMMENT to drop. - COMMENT - COMMENT

{@code player} may be {@code null} if {@linkplain #shouldAlwaysDropXp + COMMENT

+ COMMENT {@code player} may be {@code null} if {@linkplain #shouldAlwaysDropXp COMMENT shouldAlwaysDropXp()} returns {@code true}. COMMENT COMMENT @see #dropXp() diff --git a/mappings/net/minecraft/entity/SpawnGroup.mapping b/mappings/net/minecraft/entity/SpawnGroup.mapping index 3489db9b1f..b247a1afd2 100644 --- a/mappings/net/minecraft/entity/SpawnGroup.mapping +++ b/mappings/net/minecraft/entity/SpawnGroup.mapping @@ -1,7 +1,7 @@ CLASS net/minecraft/unmapped/C_ormqdxci net/minecraft/entity/SpawnGroup COMMENT A spawn group represents the category of an entity's natural spawning. - COMMENT - COMMENT

Entities that don't support natural spawning belong to the + COMMENT

+ COMMENT Entities that don't support natural spawning belong to the COMMENT {@link #MISC} group. COMMENT COMMENT @see EntityType#getSpawnGroup() @@ -31,29 +31,29 @@ CLASS net/minecraft/unmapped/C_ormqdxci net/minecraft/entity/SpawnGroup COMMENT @see net.minecraft.world.World#setMobSpawnOptions(boolean, boolean) METHOD m_lczmblqq isRare ()Z COMMENT Returns if this spawn group is spawned only rarely. - COMMENT - COMMENT

A rare spawn only happens when the {@linkplain + COMMENT

+ COMMENT A rare spawn only happens when the {@linkplain COMMENT net.minecraft.world.WorldProperties#getTime() world time} is a multiple COMMENT of {@code 400} in {@link COMMENT net.minecraft.server.world.ServerChunkManager#tickChunks()}. METHOD m_noqhjvmw getImmediateDespawnRange ()I COMMENT Returns the distance, of a mob of this group from a player, at which COMMENT that mob will despawn immediately. - COMMENT - COMMENT

This is ignored if a mob {@linkplain + COMMENT

+ COMMENT This is ignored if a mob {@linkplain COMMENT net.minecraft.entity.mob.MobEntity#canImmediatelyDespawn(double) cannot COMMENT immediately despawn}. COMMENT COMMENT @see net.minecraft.entity.mob.MobEntity#checkDespawn() METHOD m_pjftngxl getName ()Ljava/lang/String; COMMENT Returns the name of this spawn group. - COMMENT - COMMENT

The names are unique and are in {@code lower_snake_case}. + COMMENT

+ COMMENT The names are unique and are in {@code lower_snake_case}. METHOD m_wltyjkrl getDespawnStartRange ()I COMMENT Returns the distance, of a mob of this group from a player, at which COMMENT that mob can despawn at chance. - COMMENT - COMMENT

This is ignored if a mob {@linkplain + COMMENT

+ COMMENT This is ignored if a mob {@linkplain COMMENT net.minecraft.entity.mob.MobEntity#canImmediatelyDespawn(double) cannot COMMENT immediately despawn}. COMMENT diff --git a/mappings/net/minecraft/entity/ai/brain/Brain.mapping b/mappings/net/minecraft/entity/ai/brain/Brain.mapping index 510e04074e..1dc3c20139 100644 --- a/mappings/net/minecraft/entity/ai/brain/Brain.mapping +++ b/mappings/net/minecraft/entity/ai/brain/Brain.mapping @@ -1,14 +1,14 @@ CLASS net/minecraft/unmapped/C_rjqjaxef net/minecraft/entity/ai/brain/Brain COMMENT A brain is associated with each living entity. - COMMENT - COMMENT

A brain has {@linkplain #memories memories}, {@linkplain #sensors sensors}, + COMMENT

+ COMMENT A brain has {@linkplain #memories memories}, {@linkplain #sensors sensors}, COMMENT and {@linkplain #tasks tasks}. In general, the brain can use sensors to refresh COMMENT the memories over time, and the memories can be shared by different tasks, COMMENT which can reduce duplicate calculation. For instance, instead of having each COMMENT task scan for the player, the memories can hold information about nearby player, COMMENT and the task can choose to run or not accordingly. - COMMENT - COMMENT

To construct a brain, you need to specify the memory (module) types and + COMMENT

+ COMMENT To construct a brain, you need to specify the memory (module) types and COMMENT sensors present in a brain, and then you can add individual tasks. COMMENT COMMENT @see LivingEntity#brain diff --git a/mappings/net/minecraft/entity/ai/goal/GoalSelector.mapping b/mappings/net/minecraft/entity/ai/goal/GoalSelector.mapping index 3fbe0f38a3..a7ea5dd58d 100644 --- a/mappings/net/minecraft/entity/ai/goal/GoalSelector.mapping +++ b/mappings/net/minecraft/entity/ai/goal/GoalSelector.mapping @@ -1,13 +1,13 @@ CLASS net/minecraft/unmapped/C_qospjrjn net/minecraft/entity/ai/goal/GoalSelector COMMENT Manages a set of goals, which are competing for certain controls on the mob. COMMENT Multiple goals can run at the same time, so long as they are all using different controls. - COMMENT - COMMENT

A running goal will always be replaced with a goal with a lower priority, if + COMMENT

+ COMMENT A running goal will always be replaced with a goal with a lower priority, if COMMENT such a goal exists, it's competing for the same control and its COMMENT {@link Goal#canStart() canStart()} method returns true. (Note that some goals randomize COMMENT this method.) - COMMENT - COMMENT

If two goals have the same priority and are competing for the same control, then one + COMMENT

+ COMMENT If two goals have the same priority and are competing for the same control, then one COMMENT goal cannot replace the other if it's running. The goal selector tries to run goals in the order COMMENT they were added. FIELD f_eemsznmi profiler Ljava/util/function/Supplier; diff --git a/mappings/net/minecraft/entity/attribute/EntityAttribute.mapping b/mappings/net/minecraft/entity/attribute/EntityAttribute.mapping index 1f3b4964d4..f4e14003dd 100644 --- a/mappings/net/minecraft/entity/attribute/EntityAttribute.mapping +++ b/mappings/net/minecraft/entity/attribute/EntityAttribute.mapping @@ -1,7 +1,7 @@ CLASS net/minecraft/unmapped/C_ppzfbbsy net/minecraft/entity/attribute/EntityAttribute COMMENT Represents a type of double-valued attribute that a living entity may have. - COMMENT - COMMENT

An attribute is a tracked double value stored on an entity. + COMMENT

+ COMMENT An attribute is a tracked double value stored on an entity. COMMENT An attribute has a default value on which attribute modifiers operate. FIELD f_auwguvrl translationKey Ljava/lang/String; FIELD f_hogebwye MAX_NAME_LENGTH I diff --git a/mappings/net/minecraft/entity/attribute/EntityAttributeInstance.mapping b/mappings/net/minecraft/entity/attribute/EntityAttributeInstance.mapping index 2e1c6e0dcf..049927db15 100644 --- a/mappings/net/minecraft/entity/attribute/EntityAttributeInstance.mapping +++ b/mappings/net/minecraft/entity/attribute/EntityAttributeInstance.mapping @@ -38,8 +38,8 @@ CLASS net/minecraft/unmapped/C_lzukavpx net/minecraft/entity/attribute/EntityAtt METHOD m_mxlwhbkp getAttribute ()Lnet/minecraft/unmapped/C_ppzfbbsy; METHOD m_oczhaipt computeValue ()D COMMENT Computes this attribute's value, taking modifiers into account. - COMMENT - COMMENT

Attribute modifiers are applied in order by operation: + COMMENT

+ COMMENT Attribute modifiers are applied in order by operation: COMMENT

COMMENT COMMENT
{@link PublicKey}{@link #readPublicKey()}{@link #writePublicKey(PublicKey)}
- COMMENT - COMMENT

All {@code read} and {@code write} methods throw {@link + COMMENT

+ COMMENT All {@code read} and {@code write} methods throw {@link COMMENT IndexOutOfBoundsException} if there is not enough bytes to be read or COMMENT not enough space to write. FIELD f_chgkilns MAX_VAR_LONG_LENGTH I COMMENT The max number of bytes an encoded var long value may use. - COMMENT - COMMENT

Its value is {@value}. A regular long value always use 8 bytes in contrast. + COMMENT

+ COMMENT Its value is {@value}. A regular long value always use 8 bytes in contrast. COMMENT COMMENT @see #getVarLongLength(long) FIELD f_lxbttahk parent Lio/netty/buffer/ByteBuf; @@ -112,8 +112,8 @@ CLASS net/minecraft/unmapped/C_idfydwco net/minecraft/network/PacketByteBuf COMMENT {@link #readNbt()}. FIELD f_plbhivfk MAX_VAR_INT_LENGTH I COMMENT The max number of bytes an encoded var int value may use. - COMMENT - COMMENT

Its value is {@value}. A regular int value always use 4 bytes in contrast. + COMMENT

+ COMMENT Its value is {@value}. A regular int value always use 4 bytes in contrast. COMMENT COMMENT @see #getVarIntLength(int) FIELD f_rwogtoly MAX_PUBLIC_KEY_HEADER_SIZE I @@ -489,8 +489,8 @@ CLASS net/minecraft/unmapped/C_idfydwco net/minecraft/network/PacketByteBuf COMMENT @see #writeIdentifier(Identifier) METHOD m_hudsjtrd writeVarLong (J)Lnet/minecraft/unmapped/C_idfydwco; COMMENT Writes a single var long to this buf. - COMMENT - COMMENT

Compared to regular longs, var longs may use less bytes when + COMMENT

+ COMMENT Compared to regular longs, var longs may use less bytes when COMMENT representing smaller positive numbers. COMMENT COMMENT @return this buf, for chaining @@ -551,8 +551,8 @@ CLASS net/minecraft/unmapped/C_idfydwco net/minecraft/network/PacketByteBuf COMMENT the date to write METHOD m_kggdjvdd writeVarInt (I)Lnet/minecraft/unmapped/C_idfydwco; COMMENT Writes a single var int to this buf. - COMMENT - COMMENT

Compared to regular ints, var ints may use less bytes (ranging from 1 + COMMENT

+ COMMENT Compared to regular ints, var ints may use less bytes (ranging from 1 COMMENT to 5, where regular ints use 4) when representing smaller positive COMMENT numbers. COMMENT @@ -853,8 +853,8 @@ CLASS net/minecraft/unmapped/C_idfydwco net/minecraft/network/PacketByteBuf COMMENT Reads an array of primitive longs from this buf. The array first has a COMMENT var int indicating its length, followed by the regular long (not var COMMENT long) values. The array does not have a length limit. - COMMENT - COMMENT

Only when {@code toArray} is not {@code null} and {@code + COMMENT

+ COMMENT Only when {@code toArray} is not {@code null} and {@code COMMENT toArray.length} equals to the length var int read will the {@code COMMENT toArray} be reused and returned; otherwise, a new array COMMENT of proper size is created. @@ -887,8 +887,8 @@ CLASS net/minecraft/unmapped/C_idfydwco net/minecraft/network/PacketByteBuf COMMENT Reads an array of primitive longs from this buf. The array first has a COMMENT var int indicating its length, followed by the regular long (not var COMMENT long) values. The array has a length limit of {@code maxSize}. - COMMENT - COMMENT

Only when {@code toArray} is not {@code null} and {@code + COMMENT

+ COMMENT Only when {@code toArray} is not {@code null} and {@code COMMENT toArray.length} equals to the length var int read will the {@code COMMENT toArray} be reused and returned; otherwise, a new array COMMENT of proper size is created. diff --git a/mappings/net/minecraft/network/listener/PacketListener.mapping b/mappings/net/minecraft/network/listener/PacketListener.mapping index 38a152958a..ce061d1b62 100644 --- a/mappings/net/minecraft/network/listener/PacketListener.mapping +++ b/mappings/net/minecraft/network/listener/PacketListener.mapping @@ -1,8 +1,8 @@ CLASS net/minecraft/unmapped/C_tkgdawqw net/minecraft/network/listener/PacketListener COMMENT A packet listener listens to packets on a {@linkplain net.minecraft.network.ClientConnection COMMENT connection}. - COMMENT - COMMENT

Its listener methods will be called on the netty event loop than the + COMMENT

+ COMMENT Its listener methods will be called on the netty event loop than the COMMENT client or server game engine threads. METHOD m_nxirpgmj shouldPropagateHandlingExceptions ()Z METHOD m_rpvfniop isConnected ()Z diff --git a/mappings/net/minecraft/network/packet/s2c/play/EntityVelocityUpdateS2CPacket.mapping b/mappings/net/minecraft/network/packet/s2c/play/EntityVelocityUpdateS2CPacket.mapping index 6cfa75e8ae..05d688bdd8 100644 --- a/mappings/net/minecraft/network/packet/s2c/play/EntityVelocityUpdateS2CPacket.mapping +++ b/mappings/net/minecraft/network/packet/s2c/play/EntityVelocityUpdateS2CPacket.mapping @@ -1,7 +1,7 @@ CLASS net/minecraft/unmapped/C_chysixjg net/minecraft/network/packet/s2c/play/EntityVelocityUpdateS2CPacket COMMENT Sent when a server modifies an entity's velocity. - COMMENT - COMMENT

If the entity is a player, {@link + COMMENT

+ COMMENT If the entity is a player, {@link COMMENT net.minecraft.network.packet.s2c.play.ExplosionOccursS2CPacket} can be used as COMMENT a replacement. FIELD f_hsarzxoj id I diff --git a/mappings/net/minecraft/network/packet/s2c/play/ExplosionOccursS2CPacket.mapping b/mappings/net/minecraft/network/packet/s2c/play/ExplosionOccursS2CPacket.mapping index 4efe6e9cda..ee35c84f1e 100644 --- a/mappings/net/minecraft/network/packet/s2c/play/ExplosionOccursS2CPacket.mapping +++ b/mappings/net/minecraft/network/packet/s2c/play/ExplosionOccursS2CPacket.mapping @@ -1,7 +1,7 @@ CLASS net/minecraft/unmapped/C_kbftqsek net/minecraft/network/packet/s2c/play/ExplosionOccursS2CPacket COMMENT Sent when an explosion occurs in the world. - COMMENT - COMMENT

The client will update {@linkplain + COMMENT

+ COMMENT The client will update {@linkplain COMMENT net.minecraft.client.MinecraftClient#player the player}'s velocity as COMMENT well as performing an explosion. COMMENT diff --git a/mappings/net/minecraft/obfuscate/DontObfuscate.mapping b/mappings/net/minecraft/obfuscate/DontObfuscate.mapping index 4361da55fc..40e65fd36b 100644 --- a/mappings/net/minecraft/obfuscate/DontObfuscate.mapping +++ b/mappings/net/minecraft/obfuscate/DontObfuscate.mapping @@ -1,8 +1,8 @@ CLASS net/minecraft/obfuscate/DontObfuscate net/minecraft/obfuscate/DontObfuscate COMMENT This annotation applies to some unobfuscated elements within the Minecraft COMMENT source code. - COMMENT - COMMENT

Its behavior appears as follows: + COMMENT

+ COMMENT Its behavior appears as follows: COMMENT

- COMMENT - COMMENT

Visit the use page for the usage of this annotation. - COMMENT - COMMENT

In addition, single-abstract-method interfaces used as lambda expressions + COMMENT

+ COMMENT Visit the use page for the usage of this annotation. + COMMENT

+ COMMENT In addition, single-abstract-method interfaces used as lambda expressions COMMENT always have their single abstract method unobfuscated per proguard behavior. - COMMENT - COMMENT

This annotation is not {@link java.lang.annotation.Documented}, and hence + COMMENT

+ COMMENT This annotation is not {@link java.lang.annotation.Documented}, and hence COMMENT will not appear in the generated javadoc for annotated elements. COMMENT COMMENT @see net.minecraft.util.CubicSampler.Vec3dFetcher diff --git a/mappings/net/minecraft/predicate/entity/EntityPredicates.mapping b/mappings/net/minecraft/predicate/entity/EntityPredicates.mapping index 3d02b46c07..d52067c9e1 100644 --- a/mappings/net/minecraft/predicate/entity/EntityPredicates.mapping +++ b/mappings/net/minecraft/predicate/entity/EntityPredicates.mapping @@ -1,33 +1,35 @@ CLASS net/minecraft/unmapped/C_myhiyoxi net/minecraft/predicate/entity/EntityPredicates FIELD f_frvwsdyu VALID_INVENTORIES Ljava/util/function/Predicate; COMMENT Tests if an entity has a valid inventory. + COMMENT

+ COMMENT An entity has a valid inventory when: COMMENT - COMMENT

An entity has a valid inventory when: - COMMENT - COMMENT