Change report menu icons
This commit is contained in:
parent
a2e0ca19ba
commit
b0c4a86790
@ -20,19 +20,22 @@ public class ReportCategoryButton extends SimpleGuiItem
|
||||
// initialize the display items we use
|
||||
private static final Map<ReportCategory, ItemStack> ITEM_STACKS = new EnumMap<ReportCategory, ItemStack>(ReportCategory.class)
|
||||
{{
|
||||
ItemStack itemHack = new ItemBuilder(Material.IRON_SWORD)
|
||||
ItemStack itemHack = new ItemBuilder(Material.INK_SACK)
|
||||
.setData((short) 1)
|
||||
.setTitle(C.cRedB + "Hacking")
|
||||
.addLore(C.cGray + "X-ray, Forcefield, Speed, Fly etc")
|
||||
.build();
|
||||
put(ReportCategory.HACKING, itemHack);
|
||||
|
||||
ItemStack itemChatAbuse = new ItemBuilder(Material.BOOK_AND_QUILL)
|
||||
ItemStack itemChatAbuse = new ItemBuilder(Material.INK_SACK)
|
||||
.setData((short) 11)
|
||||
.setTitle(C.cDAquaB + "Chat Abuse")
|
||||
.addLore(C.cGray + "Verbal Abuse, Spam, Harassment, Trolling, etc")
|
||||
.build();
|
||||
put(ReportCategory.CHAT_ABUSE, itemChatAbuse);
|
||||
|
||||
ItemStack itemGameplay = new ItemBuilder(Material.ENDER_PEARL)
|
||||
ItemStack itemGameplay = new ItemBuilder(Material.INK_SACK)
|
||||
.setData((short) 2)
|
||||
.setTitle("Gameplay")
|
||||
.addLore(C.cGray + "Map and Bug Exploits")
|
||||
.build();
|
||||
|
Loading…
Reference in New Issue
Block a user