Add an enum for Nether Wart growth stages. Adds BUKKIT-1599

By: GJ <gjmcferrin@gmail.com>
This commit is contained in:
Bukkit/Spigot
2012-04-29 21:09:57 -04:00
parent d0f458656a
commit 410adb8404
3 changed files with 106 additions and 1 deletions

View File

@@ -0,0 +1,20 @@
package org.bukkit;
public enum NetherWartsState {
/**
* State when first seeded
*/
SEEDED,
/**
* First growth stage
*/
STAGE_ONE,
/**
* Second growth stage
*/
STAGE_TWO,
/**
* Ready to harvest
*/
RIPE;
}