Added new 1.1 items, enchantments. Added WorldType, and a method to set/get the type of a world at creation.

This commit is contained in:
Nathan Adams
2012-01-12 22:16:31 +00:00
parent a0b6a0b4a0
commit c423a56624
5 changed files with 93 additions and 1 deletions

View File

@@ -42,5 +42,10 @@ public enum EnchantmentTarget {
/**
* Allows the Enchantment to be placed on tools (spades, pickaxe, hoes, axes)
*/
TOOL;
TOOL,
/**
* Allows the Enchantment to be placed on bows.
*/
BOW;
}