Skip to content
Merged
Show file tree
Hide file tree
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
1 change: 1 addition & 0 deletions mappings/net/minecraft/client/gui/hud/ChatHud.mapping
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ CLASS net/minecraft/class_338 net/minecraft/client/gui/hud/ChatHud
FIELD field_1_1852 GO_TO_RESTRICTIONS_SCREEN_ID Lnet/minecraft/class_2960;
FIELD field_1_1853 RESTRICTED_TEXT Lnet/minecraft/class_2561;
FIELD field_1_1854 messageAllowedPredicate Ljava/util/function/Predicate;
FIELD field_1_2588 RESTRICTED_TEXT_WITH_TOOLTIP Lnet/minecraft/class_2561;
FIELD field_2061 messages Ljava/util/List;
FIELD field_2062 client Lnet/minecraft/class_310;
FIELD field_2063 messageHistory Lnet/minecraft/class_8623;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,13 @@ CLASS net/minecraft/class_1_291 net/minecraft/client/render/AllocationManager
COMMENT which can be used to index some other piece of memory held by the caller.
COMMENT In addition, the total amount of memory that an instance of this class can
COMMENT ‘allocate’ at once is fixed upon instantiation.
FIELD field_1_1738 ALLOCATION_ALIGNMENT I
FIELD field_1_1739 FIRST_LEVEL_INDEX_COUNT I
FIELD field_1_1740 SECOND_LEVEL_INDEX_COUNT I
FIELD field_1_1741 LOGGER Lorg/slf4j/Logger;
FIELD field_1_1742 MAX_ALLOCATION_SIZE J
FIELD field_1_1744 SECOND_LEVEL_INDEX_BITS I
FIELD field_1_1745 FIRST_LEVEL_INITIAL_SIZE_THRESHOLD I
FIELD field_1_1746 firstLevelAvailability I
COMMENT Bit {@code i} is set if there is any free block for the primary index {@code i}.
FIELD field_1_1747 freeHeadsByIndices [Lnet/minecraft/class_1_291$class_1_293;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
CLASS net/minecraft/class_3942 net/minecraft/client/render/block/entity/LecternBlockEntityRenderer
FIELD field_1_2372 BOOK_IN_LECTERN_STATE Lnet/minecraft/class_557$class_11650;
FIELD field_17428 book Lnet/minecraft/class_557;
FIELD field_61790 spriteHolder Lnet/minecraft/class_11701;
METHOD <init> (Lnet/minecraft/class_5614$class_5615;)V
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,4 @@ CLASS net/minecraft/class_1_185 net/minecraft/client/render/entity/animation/Bab
FIELD field_1_1373 IDLE_ON_GROUND Lnet/minecraft/class_7184;
FIELD field_1_1374 IDLE_IN_WATER Lnet/minecraft/class_7184;
FIELD field_1_1375 WALK Lnet/minecraft/class_7184;
FIELD field_1_1643 PLAY_DEAD Lnet/minecraft/class_7184;
Original file line number Diff line number Diff line change
Expand Up @@ -53,17 +53,20 @@ CLASS net/minecraft/class_5772 net/minecraft/client/render/entity/model/AdultAxo
COMMENT Represents the pitch value {@value} used for the legs of the axolotl when it is moving in water.
METHOD method_33291 setStandingOnGroundAngles (FF)V
ARG 1 animationProgress
ARG 2 headYaw
ARG 2 onGroundStationaryValue
METHOD method_33294 setMovingOnGroundAngles (FF)V
ARG 1 animationProgress
ARG 2 headYaw
ARG 2 onGroundMovingValue
METHOD method_33295 setMovingInWaterAngles (FFF)V
ARG 1 age
ARG 2 headPitch
ARG 3 inWaterMovingValue
METHOD method_33296 getTexturedModelData ()Lnet/minecraft/class_5607;
METHOD method_33297 setStandingInWaterAngles (FF)V
ARG 1 age
ARG 2 inWaterStationaryValue
METHOD method_33298 setPlayingDeadAngles (F)V
ARG 1 headYaw
METHOD method_33299 copyLegAngles (F)V
COMMENT Copies and mirrors the left leg angles to the right leg angles.
ARG 1 offset
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,5 @@ CLASS net/minecraft/class_1_182 net/minecraft/client/render/entity/model/BabyAxo
FIELD field_1_1357 swim Lnet/minecraft/class_11509;
FIELD field_1_1358 move Lnet/minecraft/class_11509;
FIELD field_1_1359 walk Lnet/minecraft/class_11509;
FIELD field_1_1621 playDead Lnet/minecraft/class_11509;
METHOD method_1_1627 getTexturedModelData ()Lnet/minecraft/class_5607;
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ CLASS net/minecraft/class_10000 net/minecraft/client/render/entity/state/Axolotl
FIELD field_1_1366 swimState Lnet/minecraft/class_7094;
FIELD field_1_1367 walkState Lnet/minecraft/class_7094;
FIELD field_1_1368 moveState Lnet/minecraft/class_7094;
FIELD field_1_1638 playingDeadState Lnet/minecraft/class_7094;
FIELD field_53260 variant Lnet/minecraft/class_5762$class_5767;
FIELD field_53261 playingDeadValue F
FIELD field_53262 isMovingValue F
Expand Down
4 changes: 4 additions & 0 deletions mappings/net/minecraft/client/util/ChatMessages.mapping
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
CLASS net/minecraft/class_341 net/minecraft/client/util/ChatMessages
FIELD field_25263 SPACES Lnet/minecraft/class_5481;
METHOD method_1_3133 truncate (Lnet/minecraft/class_2561;Lnet/minecraft/class_327;I)Lnet/minecraft/class_5481;
ARG 0 text
ARG 1 textRenderer
ARG 2 width
METHOD method_1849 getRenderedChatMessage (Ljava/lang/String;)Ljava/lang/String;
ARG 0 message
METHOD method_1850 breakRenderedChatMessageLines (Lnet/minecraft/class_5348;ILnet/minecraft/class_327;)Ljava/util/List;
Expand Down
2 changes: 2 additions & 0 deletions mappings/net/minecraft/client/window/Window.mapping
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,8 @@ CLASS net/minecraft/class_1041 net/minecraft/client/window/Window
METHOD method_1_2664 changedSize ()Z
METHOD method_1_2665 clearChangedSizeStatus ()V
METHOD method_1_2666 updateFullscreenIfNeeded ()V
METHOD method_1_3099 clampToPositive (I)I
ARG 0 x
METHOD method_4474 setPhase (Ljava/lang/String;)V
ARG 1 phase
METHOD method_4475 applyFullscreenVideoMode ()V
Expand Down
6 changes: 6 additions & 0 deletions mappings/net/minecraft/component/DataComponentTypes.mapping
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,12 @@ CLASS net/minecraft/class_9334 net/minecraft/component/DataComponentTypes
FIELD field_56595 CHICKEN_VARIANT Lnet/minecraft/class_9331;
FIELD field_57109 WOLF_SOUND_VARIANT Lnet/minecraft/class_9331;
FIELD field_64474 ZOMBIE_NAUTILUS_VARIANT Lnet/minecraft/class_9331;
METHOD method_1_2236 (Lnet/minecraft/class_9331$class_9332;)Lnet/minecraft/class_9331$class_9332;
ARG 0 builder
METHOD method_1_2237 (Lnet/minecraft/class_9331$class_9332;)Lnet/minecraft/class_9331$class_9332;
ARG 0 builder
METHOD method_1_2238 (Lnet/minecraft/class_9331$class_9332;)Lnet/minecraft/class_9331$class_9332;
ARG 0 builder
METHOD method_57884 (Lnet/minecraft/class_9331$class_9332;)Lnet/minecraft/class_9331$class_9332;
ARG 0 builder
METHOD method_57885 (Lnet/minecraft/class_9331$class_9332;)Lnet/minecraft/class_9331$class_9332;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ CLASS net/minecraft/class_5762 net/minecraft/entity/passive/AxolotlEntity
FIELD field_1_1216 swimState Lnet/minecraft/class_7094;
FIELD field_1_1217 walkState Lnet/minecraft/class_7094;
FIELD field_1_1218 moveState Lnet/minecraft/class_7094;
FIELD field_1_1548 playingDeadState Lnet/minecraft/class_7094;
FIELD field_28335 VARIANT Lnet/minecraft/class_2940;
FIELD field_28336 PLAYING_DEAD Lnet/minecraft/class_2940;
FIELD field_28337 FROM_BUCKET Lnet/minecraft/class_2940;
Expand Down
Loading