while some of these may of been true, they are extreme cases and cause a ton of noise to plugin developers. Use ApiStatus.Internal instead of Deprecated for actual internal API that continues to have use (internally). These do not help plugin developers if they bring moise noise than value.
28 lines
463 B
Java
28 lines
463 B
Java
package org.bukkit;
|
|
|
|
// Paper start
|
|
/**
|
|
* @deprecated use {@link org.bukkit.block.data.BlockData} and {@link org.bukkit.block.data.Ageable}
|
|
*/
|
|
@Deprecated(forRemoval = true, since = "1.13")
|
|
// Paper end
|
|
public enum NetherWartsState {
|
|
|
|
/**
|
|
* State when first seeded
|
|
*/
|
|
SEEDED,
|
|
/**
|
|
* First growth stage
|
|
*/
|
|
STAGE_ONE,
|
|
/**
|
|
* Second growth stage
|
|
*/
|
|
STAGE_TWO,
|
|
/**
|
|
* Ready to harvest
|
|
*/
|
|
RIPE;
|
|
}
|