Skip to content

Commit f5bbb7f

Browse files
authored
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.
1 parent 421d987 commit f5bbb7f

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

  • src/main/java/meteordevelopment/meteorclient/systems/modules

src/main/java/meteordevelopment/meteorclient/systems/modules/Categories.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,12 @@
1111
import net.minecraft.world.item.Items;
1212

1313
public class Categories {
14-
public static final Category Combat = new Category("Combat", () -> DisplayItemUtils.toStack(Items.GOLDEN_SWORD));
15-
public static final Category Player = new Category("Player", () -> DisplayItemUtils.toStack(Items.ARMOR_STAND));
16-
public static final Category Movement = new Category("Movement", () -> DisplayItemUtils.toStack(Items.DIAMOND_BOOTS));
14+
public static final Category Combat = new Category("Combat", () -> DisplayItemUtils.toStack(Items.DIAMOND_SWORD));
15+
public static final Category Player = new Category("Player", () -> DisplayItemUtils.toStack(Items.PLAYER_HEAD));
16+
public static final Category Movement = new Category("Movement", () -> DisplayItemUtils.toStack(Items.ELYTRA));
1717
public static final Category Render = new Category("Render", () -> DisplayItemUtils.toStack(Items.GLASS));
1818
public static final Category World = new Category("World", () -> DisplayItemUtils.toStack(Items.GRASS_BLOCK));
19-
public static final Category Misc = new Category("Misc", () -> DisplayItemUtils.toStack(Items.LAVA_BUCKET));
19+
public static final Category Misc = new Category("Misc", () -> DisplayItemUtils.toStack(Items.SHULKER_BOX));
2020

2121
public static boolean REGISTERING;
2222

0 commit comments

Comments
 (0)