Skip to content

Commit 3762c5e

Browse files
committed
feat!(minecraft): update to 25w17a
Mainly additions/changes from the previous snapshot. See: https://minecraft.wiki/w/Java_Edition_25w17a
1 parent faf25d0 commit 3762c5e

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

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

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -195,6 +195,8 @@ public final class BlockTypeTags {
195195

196196
public static final Tag<BlockType> GUARDED_BY_PIGLINS = BlockTypeTags.key(ResourceKey.minecraft("guarded_by_piglins"));
197197

198+
public static final Tag<BlockType> HAPPY_GHAST_AVOIDS = BlockTypeTags.key(ResourceKey.minecraft("happy_ghast_avoids"));
199+
198200
public static final Tag<BlockType> HOGLIN_REPELLENTS = BlockTypeTags.key(ResourceKey.minecraft("hoglin_repellents"));
199201

200202
public static final Tag<BlockType> ICE = BlockTypeTags.key(ResourceKey.minecraft("ice"));
@@ -375,6 +377,8 @@ public final class BlockTypeTags {
375377

376378
public static final Tag<BlockType> TRIGGERS_AMBIENT_DESERT_SAND_BLOCK_SOUNDS = BlockTypeTags.key(ResourceKey.minecraft("triggers_ambient_desert_sand_block_sounds"));
377379

380+
public static final Tag<BlockType> TRIGGERS_AMBIENT_DRIED_GHAST_BLOCK_SOUNDS = BlockTypeTags.key(ResourceKey.minecraft("triggers_ambient_dried_ghast_block_sounds"));
381+
378382
public static final Tag<BlockType> UNDERWATER_BONEMEALS = BlockTypeTags.key(ResourceKey.minecraft("underwater_bonemeals"));
379383

380384
public static final Tag<BlockType> UNSTABLE_BOTTOM_CENTER = BlockTypeTags.key(ResourceKey.minecraft("unstable_bottom_center"));

src/main/java/org/spongepowered/api/world/gamerule/GameRules.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -102,6 +102,8 @@ public final class GameRules {
102102

103103
public static final DefaultedRegistryReference<GameRule<Boolean>> LAVA_SOURCE_CONVERSION = GameRules.key(ResourceKey.sponge("lava_source_conversion"));
104104

105+
public static final DefaultedRegistryReference<GameRule<Boolean>> LOCATOR_BAR = GameRules.key(ResourceKey.sponge("locator_bar"));
106+
105107
public static final DefaultedRegistryReference<GameRule<Boolean>> LOG_ADMIN_COMMANDS = GameRules.key(ResourceKey.sponge("log_admin_commands"));
106108

107109
public static final DefaultedRegistryReference<GameRule<Integer>> MAX_COMMAND_CHAIN_LENGTH = GameRules.key(ResourceKey.sponge("max_command_chain_length"));
@@ -148,8 +150,6 @@ public final class GameRules {
148150

149151
public static final DefaultedRegistryReference<GameRule<Boolean>> UNIVERSAL_ANGER = GameRules.key(ResourceKey.sponge("universal_anger"));
150152

151-
public static final DefaultedRegistryReference<GameRule<Boolean>> USE_LOCATOR_BAR = GameRules.key(ResourceKey.sponge("use_locator_bar"));
152-
153153
public static final DefaultedRegistryReference<GameRule<Boolean>> WATER_SOURCE_CONVERSION = GameRules.key(ResourceKey.sponge("water_source_conversion"));
154154

155155
private GameRules() {

0 commit comments

Comments
 (0)