diff --git a/ChestCommands/src/com/gmail/filoghost/chestcommands/util/Utils.java b/ChestCommands/src/com/gmail/filoghost/chestcommands/util/Utils.java index 11ffd55..37978d0 100644 --- a/ChestCommands/src/com/gmail/filoghost/chestcommands/util/Utils.java +++ b/ChestCommands/src/com/gmail/filoghost/chestcommands/util/Utils.java @@ -86,6 +86,7 @@ public class Utils { tempMap.put("gunpowder", Material.SULPHUR); tempMap.put("lilypad", Material.WATER_LILY); tempMap.put("command block", Material.COMMAND); + tempMap.put("dye", Material.INK_SACK); for (Entry tempEntry : tempMap.entrySet()) { materialMap.put(StringUtils.stripChars(tempEntry.getKey(), " _-").toLowerCase(), tempEntry.getValue()); @@ -304,6 +305,6 @@ public class Utils { builder.append(iter.next()); } - return builder.toString(); + return builder.toString(); } }