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;