This commit is contained in:
Nick Minkler 2014-06-23 13:20:26 -07:00
commit f45e3c27c9
2 changed files with 2 additions and 1 deletions

View File

@ -34,7 +34,7 @@ public interface Economy {
/**
* Gets name of economy method
* @return Name of Ecoomy Method
* @return Name of Economy Method
*/
public String getName();

View File

@ -248,6 +248,7 @@ public class Items {
items.add(new ItemInfo("Cooked Porkchop", new String[][]{{"pork", "cook"}, {"baco"}}, Material.GRILLED_PORK));
items.add(new ItemInfo("Paintings", new String[][]{{"paint"}}, Material.PAINTING));
items.add(new ItemInfo("Golden Apple", new String[][]{{"appl", "go"}}, Material.GOLDEN_APPLE));
items.add(new ItemInfo("Enchanted Golden Apple", new String[][]{{"appl", "go", "ench"}}, Material.GOLDEN_APPLE, (short) 1));
items.add(new ItemInfo("Sign", new String[][]{{"sign"}}, Material.SIGN));
items.add(new ItemInfo("Wooden Door", new String[][]{{"door", "wood"}, {"door"}}, Material.WOOD_DOOR));
items.add(new ItemInfo("Bucket", new String[][]{{"buck"}, {"bukk"}}, Material.BUCKET));