mirror of
https://github.com/PaperMC/Paper.git
synced 2025-09-01 21:03:52 -07:00
A special thanks goes to @aerouk for almost all of the changes found here. By: Wesley Wolfe <weswolf@aol.com>
22 lines
279 B
Java
22 lines
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;
|
|
}
|