|
42 | 42 | import org.spongepowered.api.data.type.StairShape;
|
43 | 43 | import org.spongepowered.api.data.type.StructureMode;
|
44 | 44 | import org.spongepowered.api.data.type.Tilt;
|
| 45 | +import org.spongepowered.api.data.type.TrialSpawnerState; |
| 46 | +import org.spongepowered.api.data.type.VaultState; |
45 | 47 | import org.spongepowered.api.data.type.WallConnectionState;
|
46 | 48 | import org.spongepowered.api.data.type.WireAttachmentType;
|
47 | 49 | import org.spongepowered.api.data.value.Value;
|
@@ -210,6 +212,8 @@ public final class BlockStateKeys {
|
210 | 212 |
|
211 | 213 | public static final Key<Value<Boolean>> OCCUPIED = BlockStateKeys.key(ResourceKey.minecraft("property/occupied"), Boolean.class);
|
212 | 214 |
|
| 215 | + public static final Key<Value<Boolean>> OMINOUS = BlockStateKeys.key(ResourceKey.minecraft("property/ominous"), Boolean.class); |
| 216 | + |
213 | 217 | public static final Key<Value<Boolean>> OPEN = BlockStateKeys.key(ResourceKey.minecraft("property/open"), Boolean.class);
|
214 | 218 |
|
215 | 219 | public static final Key<Value<JigsawBlockOrientation>> ORIENTATION = BlockStateKeys.key(ResourceKey.minecraft("property/orientation"), JigsawBlockOrientation.class);
|
@@ -260,12 +264,16 @@ public final class BlockStateKeys {
|
260 | 264 |
|
261 | 265 | public static final Key<Value<Tilt>> TILT = BlockStateKeys.key(ResourceKey.minecraft("property/tilt"), Tilt.class);
|
262 | 266 |
|
| 267 | + public static final Key<Value<TrialSpawnerState>> TRIAL_SPAWNER_STATE = BlockStateKeys.key(ResourceKey.minecraft("property/trial_spawner_state"), TrialSpawnerState.class); |
| 268 | + |
263 | 269 | public static final Key<Value<Boolean>> TRIGGERED = BlockStateKeys.key(ResourceKey.minecraft("property/triggered"), Boolean.class);
|
264 | 270 |
|
265 | 271 | public static final Key<Value<Boolean>> UNSTABLE = BlockStateKeys.key(ResourceKey.minecraft("property/unstable"), Boolean.class);
|
266 | 272 |
|
267 | 273 | public static final Key<Value<Boolean>> UP = BlockStateKeys.key(ResourceKey.minecraft("property/up"), Boolean.class);
|
268 | 274 |
|
| 275 | + public static final Key<Value<VaultState>> VAULT_STATE = BlockStateKeys.key(ResourceKey.minecraft("property/vault_state"), VaultState.class); |
| 276 | + |
269 | 277 | public static final Key<Value<Direction>> VERTICAL_DIRECTION = BlockStateKeys.key(ResourceKey.minecraft("property/vertical_direction"), Direction.class);
|
270 | 278 |
|
271 | 279 | public static final Key<Value<Boolean>> WATERLOGGED = BlockStateKeys.key(ResourceKey.minecraft("property/waterlogged"), Boolean.class);
|
|
0 commit comments