Color names of report buttons properly

This commit is contained in:
Spencer 2018-01-03 19:49:44 -05:00 committed by Alexander Meech
parent b0c4a86790
commit 71efe0503b
1 changed files with 2 additions and 2 deletions

View File

@ -29,14 +29,14 @@ public class ReportCategoryButton extends SimpleGuiItem
ItemStack itemChatAbuse = new ItemBuilder(Material.INK_SACK) ItemStack itemChatAbuse = new ItemBuilder(Material.INK_SACK)
.setData((short) 11) .setData((short) 11)
.setTitle(C.cDAquaB + "Chat Abuse") .setTitle(C.cYellowB + "Chat Abuse")
.addLore(C.cGray + "Verbal Abuse, Spam, Harassment, Trolling, etc") .addLore(C.cGray + "Verbal Abuse, Spam, Harassment, Trolling, etc")
.build(); .build();
put(ReportCategory.CHAT_ABUSE, itemChatAbuse); put(ReportCategory.CHAT_ABUSE, itemChatAbuse);
ItemStack itemGameplay = new ItemBuilder(Material.INK_SACK) ItemStack itemGameplay = new ItemBuilder(Material.INK_SACK)
.setData((short) 2) .setData((short) 2)
.setTitle("Gameplay") .setTitle(C.cGreenB + "Gameplay")
.addLore(C.cGray + "Map and Bug Exploits") .addLore(C.cGray + "Map and Bug Exploits")
.build(); .build();
put(ReportCategory.GAMEPLAY, itemGameplay); put(ReportCategory.GAMEPLAY, itemGameplay);