Skip to content

Commit 71d8ed3

Browse files
committed
feat: add content for 25w07a
1 parent 6314841 commit 71d8ed3

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

src/main/java/org/spongepowered/api/data/BlockStateKeys.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -200,6 +200,8 @@ public final class BlockStateKeys {
200200

201201
public static final Key<Value<Boolean>> LOCKED = BlockStateKeys.key(ResourceKey.minecraft("property/locked"), Boolean.class);
202202

203+
public static final Key<Value<Boolean>> MAP = BlockStateKeys.key(ResourceKey.minecraft("property/map"), Boolean.class);
204+
203205
public static final Key<Value<ComparatorMode>> MODE_COMPARATOR = BlockStateKeys.key(ResourceKey.minecraft("property/mode"), ComparatorMode.class);
204206

205207
public static final Key<Value<Integer>> MOISTURE = BlockStateKeys.key(ResourceKey.minecraft("property/moisture"), Integer.class);

src/main/java/org/spongepowered/api/tag/BlockTypeTags.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -93,6 +93,8 @@ public final class BlockTypeTags {
9393

9494
public static final Tag<BlockType> CAMEL_SAND_STEP_SOUND_BLOCKS = BlockTypeTags.key(ResourceKey.minecraft("camel_sand_step_sound_blocks"));
9595

96+
public static final Tag<BlockType> CAMELS_SPAWNABLE_ON = BlockTypeTags.key(ResourceKey.minecraft("camels_spawnable_on"));
97+
9698
public static final Tag<BlockType> CAMPFIRES = BlockTypeTags.key(ResourceKey.minecraft("campfires"));
9799

98100
public static final Tag<BlockType> CANDLE_CAKES = BlockTypeTags.key(ResourceKey.minecraft("candle_cakes"));

src/main/java/org/spongepowered/api/world/generation/feature/Features.java

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -334,10 +334,6 @@ public final class Features {
334334

335335
public static final DefaultedRegistryReference<Feature> PATCH_FIREFLY_BUSH = Features.key(ResourceKey.minecraft("patch_firefly_bush"));
336336

337-
public static final DefaultedRegistryReference<Feature> PATCH_FIREFLY_BUSH_NEAR_WATER = Features.key(ResourceKey.minecraft("patch_firefly_bush_near_water"));
338-
339-
public static final DefaultedRegistryReference<Feature> PATCH_FIREFLY_BUSH_SPARSE = Features.key(ResourceKey.minecraft("patch_firefly_bush_sparse"));
340-
341337
public static final DefaultedRegistryReference<Feature> PATCH_GRASS = Features.key(ResourceKey.minecraft("patch_grass"));
342338

343339
public static final DefaultedRegistryReference<Feature> PATCH_GRASS_JUNGLE = Features.key(ResourceKey.minecraft("patch_grass_jungle"));

0 commit comments

Comments
 (0)