We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bdb40a3 commit 22c6504Copy full SHA for 22c6504
src/main/java/org/spongepowered/api/data/Keys.java
@@ -2298,6 +2298,13 @@ public final class Keys {
2298
*/
2299
public static final Key<Value<Ticks>> MAX_FROZEN_TIME = Keys.key(ResourceKey.sponge("max_frozen_time"), Ticks.class);
2300
2301
+ /**
2302
+ * The max growth stage of a {@link BlockState}.
2303
+ * e.g. {@link BlockTypes#CACTUS} or {@link BlockTypes#WHEAT} etc.
2304
+ * Readonly
2305
+ */
2306
+ public static final Key<Value<Integer>> MAX_GROWTH_STAGE = Keys.key(ResourceKey.sponge("max_growth_stage"), Integer.class);
2307
+
2308
/**
2309
* The maximum health of a {@link Living}.
2310
*
0 commit comments