geforkt von Mirrors/Paper
bb50f1a774
A special thanks goes to @aerouk for almost all of the changes found here. By: Wesley Wolfe <weswolf@aol.com>
22 Zeilen
279 B
Java
22 Zeilen
279 B
Java
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;
|
|
}
|