Skip to content
Open
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
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down