We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b480077 commit 9efc26bCopy full SHA for 9efc26b
1 file changed
src/dp/speedcraft/gui/Redstone.java
@@ -21,10 +21,10 @@ public Redstone(Main m) {
21
public static ItemStack redstone(Player p) {
22
UUID uuid = p.getUniqueId();
23
24
- ItemStack redstone = new ItemStack(Material.COAL);
+ ItemStack redstone = new ItemStack(Material.REDSTONE);
25
ItemMeta redstoneM = redstone.getItemMeta();
26
27
- redstoneM.setDisplayName(ChatColor.LIGHT_PURPLE + "Coal");
+ redstoneM.setDisplayName(ChatColor.LIGHT_PURPLE + "Redstone");
28
ArrayList<String> lore = new ArrayList<String>();
29
30
lore.add(" ");
@@ -42,4 +42,4 @@ public static ItemStack redstone(Player p) {
42
return redstone;
43
}
44
45
-}
+
0 commit comments