Skip to content

Commit b0b0900

Browse files
committed
feat(minecraft): update to 25w45a
- Added `ENTITY_ZOMBIE_HORSE_EAT` sound type. - Updated `NautilusLike` to implement `Carrier`. See: https://minecraft.wiki/w/Java_Edition_25w46a
1 parent 11cdb70 commit b0b0900

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

src/main/java/org/spongepowered/api/effect/sound/SoundTypes.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3278,6 +3278,8 @@ public final class SoundTypes {
32783278

32793279
public static final DefaultedRegistryReference<SoundType> ENTITY_ZOMBIE_HORSE_DEATH = SoundTypes.key(ResourceKey.minecraft("entity.zombie_horse.death"));
32803280

3281+
public static final DefaultedRegistryReference<SoundType> ENTITY_ZOMBIE_HORSE_EAT = SoundTypes.key(ResourceKey.minecraft("entity.zombie_horse.eat"));
3282+
32813283
public static final DefaultedRegistryReference<SoundType> ENTITY_ZOMBIE_HORSE_HURT = SoundTypes.key(ResourceKey.minecraft("entity.zombie_horse.hurt"));
32823284

32833285
public static final DefaultedRegistryReference<SoundType> ENTITY_ZOMBIE_HURT = SoundTypes.key(ResourceKey.minecraft("entity.zombie.hurt"));

src/main/java/org/spongepowered/api/entity/living/animal/NautilusLike.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,12 @@
2424
*/
2525
package org.spongepowered.api.entity.living.animal;
2626

27+
import org.spongepowered.api.item.inventory.Carrier;
28+
2729
/**
2830
* Represents a Nautilus-like entity, all of which can be mounted.
2931
* <p>
3032
* See <a href="https://minecraft.wiki/w/Nautilus">Minecraft Wiki</a>
3133
*/
32-
public interface NautilusLike extends TameableAnimal {
34+
public interface NautilusLike extends TameableAnimal, Carrier {
3335
}

0 commit comments

Comments
 (0)