Skip to content

Commit

Permalink
add missing CommonColor constants (#679)
Browse files Browse the repository at this point in the history
* add missing CommonColor constants

* clarify ALTERNATE_WHITE to LIGHTER_GRAY

Co-authored-by: Will <[email protected]>

---------

Co-authored-by: Will <[email protected]>
  • Loading branch information
TheLadyLuthien and supersaiyansubtlety authored Jan 6, 2025
1 parent d35c987 commit 50b9667
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions mappings/net/minecraft/util/CommonColors.mapping
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ CLASS net/minecraft/unmapped/C_oauvuath net/minecraft/util/CommonColors
FIELD f_bcspjcwq LIGHT_GRAY I
FIELD f_fdbmklve LIGHT_YELLOW I
FIELD f_hxnrjiec BLACK I
FIELD f_mbpvtspr LIGHTER_GRAY I
FIELD f_ocmjathi BLUE I
FIELD f_qlmrjxqb WHITE I
FIELD f_qzyevrxu LIGHT_RED I
FIELD f_tqdlcziy GREEN I
FIELD f_vzujugkt GRAY I

1 comment on commit 50b9667

@github-actions
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

With commit 50b9667, 1 file(s) were updated with 9 line(s) added and 6 removed compared to the latest Quilt Mappings version.

View the diff here:
diff -bur namedTargetSrc/net/minecraft/util/CommonColors.java namedSrc/net/minecraft/util/CommonColors.java
--- namedTargetSrc/net/minecraft/util/CommonColors.java	2025-01-06 01:22:09.082395366 +0000
+++ namedSrc/net/minecraft/util/CommonColors.java	2025-01-06 01:20:59.638818393 +0000
@@ -28,22 +28,25 @@
     */
    public static final int LIGHT_GRAY = -6250336;
    /**
-    * Mapping not found
+    * @mapping {@literal hashed f_mbpvtspr Lnet/minecraft/unmapped/C_oauvuath;f_mbpvtspr:I}
+    * @mapping {@literal named LIGHTER_GRAY Lnet/minecraft/util/CommonColors;LIGHTER_GRAY:I}
     */
-   public static final int f_mbpvtspr = -4539718;
+   public static final int LIGHTER_GRAY = -4539718;
    /**
     * @mapping {@literal hashed f_ajryuepi Lnet/minecraft/unmapped/C_oauvuath;f_ajryuepi:I}
     * @mapping {@literal named RED Lnet/minecraft/util/CommonColors;RED:I}
     */
    public static final int RED = -65536;
    /**
-    * Mapping not found
+    * @mapping {@literal hashed f_tqdlcziy Lnet/minecraft/unmapped/C_oauvuath;f_tqdlcziy:I}
+    * @mapping {@literal named GREEN Lnet/minecraft/util/CommonColors;GREEN:I}
     */
-   public static final int f_tqdlcziy = -16711936;
+   public static final int GREEN = -16711936;
    /**
-    * Mapping not found
+    * @mapping {@literal hashed f_ocmjathi Lnet/minecraft/unmapped/C_oauvuath;f_ocmjathi:I}
+    * @mapping {@literal named BLUE Lnet/minecraft/util/CommonColors;BLUE:I}
     */
-   public static final int f_ocmjathi = -16776961;
+   public static final int BLUE = -16776961;
    /**
     * @mapping {@literal hashed f_qzyevrxu Lnet/minecraft/unmapped/C_oauvuath;f_qzyevrxu:I}
     * @mapping {@literal named LIGHT_RED Lnet/minecraft/util/CommonColors;LIGHT_RED:I}

Please sign in to comment.