@@ -126,6 +126,8 @@ public final class BlockStateKeys {
126126
127127 public static final Key <Value <DripstoneSegment >> DRIPSTONE_THICKNESS = BlockStateKeys .key (ResourceKey .minecraft ("property/thickness" ), DripstoneSegment .class );
128128
129+ public static final Key <Value <Integer >> DUSTED = BlockStateKeys .key (ResourceKey .minecraft ("property/dusted" ), Integer .class );
130+
129131 public static final Key <Value <Boolean >> EAST = BlockStateKeys .key (ResourceKey .minecraft ("property/east" ), Boolean .class );
130132
131133 public static final Key <Value <WireAttachmentType >> EAST_REDSTONE = BlockStateKeys .key (ResourceKey .minecraft ("property/east" ), WireAttachmentType .class );
@@ -146,6 +148,8 @@ public final class BlockStateKeys {
146148
147149 public static final Key <Value <Boolean >> FALLING = BlockStateKeys .key (ResourceKey .minecraft ("property/falling" ), Boolean .class );
148150
151+ public static final Key <Value <Integer >> FLOWER_AMOUNT = BlockStateKeys .key (ResourceKey .minecraft ("property/flower_amount" ), Integer .class );
152+
149153 public static final Key <Value <PortionType >> HALF = BlockStateKeys .key (ResourceKey .minecraft ("property/half" ), PortionType .class );
150154
151155 public static final Key <Value <Boolean >> HANGING = BlockStateKeys .key (ResourceKey .minecraft ("property/hanging" ), Boolean .class );
@@ -260,8 +264,6 @@ public final class BlockStateKeys {
260264
261265 public static final Key <Value <Direction >> VERTICAL_DIRECTION = BlockStateKeys .key (ResourceKey .minecraft ("property/vertical_direction" ), Direction .class );
262266
263- public static final Key <Value <Boolean >> VINE_END = BlockStateKeys .key (ResourceKey .minecraft ("property/vine_end" ), Boolean .class );
264-
265267 public static final Key <Value <Boolean >> WATERLOGGED = BlockStateKeys .key (ResourceKey .minecraft ("property/waterlogged" ), Boolean .class );
266268
267269 public static final Key <Value <Boolean >> WEST = BlockStateKeys .key (ResourceKey .minecraft ("property/west" ), Boolean .class );
0 commit comments