From f5bbb7f34b00172754e2b94e2980711756894923 Mon Sep 17 00:00:00 2001 From: maartix1 Date: Thu, 21 May 2026 17:36:18 +0200 Subject: [PATCH 1/2] Update item categories with new items Im change icons from gold sworld in combat to diamond sword, diamond buts on movement to elytra and lava bucket im misc to shulker box. --- .../meteorclient/systems/modules/Categories.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/main/java/meteordevelopment/meteorclient/systems/modules/Categories.java b/src/main/java/meteordevelopment/meteorclient/systems/modules/Categories.java index 60c50274f5..2a04de3496 100644 --- a/src/main/java/meteordevelopment/meteorclient/systems/modules/Categories.java +++ b/src/main/java/meteordevelopment/meteorclient/systems/modules/Categories.java @@ -11,12 +11,12 @@ import net.minecraft.world.item.Items; public class Categories { - public static final Category Combat = new Category("Combat", () -> DisplayItemUtils.toStack(Items.GOLDEN_SWORD)); - public static final Category Player = new Category("Player", () -> DisplayItemUtils.toStack(Items.ARMOR_STAND)); - public static final Category Movement = new Category("Movement", () -> DisplayItemUtils.toStack(Items.DIAMOND_BOOTS)); + public static final Category Combat = new Category("Combat", () -> DisplayItemUtils.toStack(Items.DIAMOND_SWORD)); + public static final Category Player = new Category("Player", () -> DisplayItemUtils.toStack(Items.PLAYER_HEAD)); + public static final Category Movement = new Category("Movement", () -> DisplayItemUtils.toStack(Items.ELYTRA)); public static final Category Render = new Category("Render", () -> DisplayItemUtils.toStack(Items.GLASS)); public static final Category World = new Category("World", () -> DisplayItemUtils.toStack(Items.GRASS_BLOCK)); - public static final Category Misc = new Category("Misc", () -> DisplayItemUtils.toStack(Items.LAVA_BUCKET)); + public static final Category Misc = new Category("Misc", () -> DisplayItemUtils.toStack(Items.SHULKER_BOX)); public static boolean REGISTERING; From d93bd88fbfc0f53030d88a25a4b2a49d29711b43 Mon Sep 17 00:00:00 2001 From: Martix Date: Sun, 24 May 2026 15:32:55 +0200 Subject: [PATCH 2/2] Update Render categories with new items --- .../meteorclient/systems/modules/Categories.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/meteordevelopment/meteorclient/systems/modules/Categories.java b/src/main/java/meteordevelopment/meteorclient/systems/modules/Categories.java index 2a04de3496..afd94df478 100644 --- a/src/main/java/meteordevelopment/meteorclient/systems/modules/Categories.java +++ b/src/main/java/meteordevelopment/meteorclient/systems/modules/Categories.java @@ -13,8 +13,8 @@ public class Categories { public static final Category Combat = new Category("Combat", () -> DisplayItemUtils.toStack(Items.DIAMOND_SWORD)); public static final Category Player = new Category("Player", () -> DisplayItemUtils.toStack(Items.PLAYER_HEAD)); - public static final Category Movement = new Category("Movement", () -> DisplayItemUtils.toStack(Items.ELYTRA)); - public static final Category Render = new Category("Render", () -> DisplayItemUtils.toStack(Items.GLASS)); + public static final Category Movement = new Category("Movement", () -> DisplayItemUtils.toStack(Items.DIAMOND_BOOTS)); + public static final Category Render = new Category("Render", () -> DisplayItemUtils.toStack(Items.SPYGLASS)); public static final Category World = new Category("World", () -> DisplayItemUtils.toStack(Items.GRASS_BLOCK)); public static final Category Misc = new Category("Misc", () -> DisplayItemUtils.toStack(Items.SHULKER_BOX));