Skip to content

Commit 95beb8c

Browse files
committed
register wolf sound variant
1 parent 3be8a83 commit 95beb8c

File tree

5 files changed

+8
-11
lines changed

5 files changed

+8
-11
lines changed

paper-api/src/main/java/io/papermc/paper/registry/RegistryKey.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ public sealed interface RegistryKey<T> extends Keyed permits RegistryKeyImpl {
165165
RegistryKey<Wolf.Variant> WOLF_VARIANT = create("wolf_variant");
166166
/**
167167
* Data-driven registry for wolf variants.
168-
* @see io.papermc.paper.registry.keys.WolfSoundVariantKeys
168+
* <!-- @see io.papermc.paper.registry.keys.WolfSoundVariantKeys -->
169169
*/
170170
RegistryKey<Wolf.SoundVariant> WOLF_SOUND_VARIANT = create("wolf_sound_variant");
171171
/**

paper-api/src/main/java/org/bukkit/EntityEffect.java

+3-3
Original file line numberDiff line numberDiff line change
@@ -248,14 +248,14 @@ public enum EntityEffect {
248248
/**
249249
* Shield blocks attack.
250250
*
251-
* @deprecated replaced by a component
251+
* @deprecated replaced by the {@code blocks_attacks} item data component
252252
*/
253253
@Deprecated(since = "1.21.5", forRemoval = true)
254254
SHIELD_BLOCK(29, LivingEntity.class),
255255
/**
256256
* Shield breaks.
257257
*
258-
* @deprecated replaced by a component
258+
* @deprecated replaced by the {@code blocks_attacks} item data component
259259
*/
260260
@Deprecated(since = "1.21.5", forRemoval = true)
261261
SHIELD_BREAK(30, LivingEntity.class),
@@ -476,7 +476,7 @@ public enum EntityEffect {
476476
*
477477
* @see org.bukkit.inventory.EquipmentSlot#SADDLE
478478
*/
479-
SADDLE_BREAK(68, LivingEntity.class);
479+
BREAK_EQUIPMENT_SADDLE(68, LivingEntity.class);
480480

481481
private final byte data;
482482
private final Set<Class<? extends Entity>> applicableClasses;

paper-api/src/main/java/org/bukkit/entity/Wolf.java

+1-7
Original file line numberDiff line numberDiff line change
@@ -131,13 +131,7 @@ private static Variant getVariant(@NotNull String key) {
131131
*/
132132
interface SoundVariant extends Keyed {
133133

134-
SoundVariant CLASSIC = getSoundVariant("classic");
135-
SoundVariant PUGLIN = getSoundVariant("puglin");
136-
SoundVariant SAD = getSoundVariant("sad");
137-
SoundVariant ANGRY = getSoundVariant("angry");
138-
SoundVariant GRUMPY = getSoundVariant("grumpy");
139-
SoundVariant BIG = getSoundVariant("big");
140-
SoundVariant CUTE = getSoundVariant("cute");
134+
// todo generators
141135

142136
@NotNull
143137
private static SoundVariant getSoundVariant(@NotNull String key) {

paper-server/src/main/java/io/papermc/paper/registry/PaperRegistries.java

+1
Original file line numberDiff line numberDiff line change
@@ -111,6 +111,7 @@ public final class PaperRegistries {
111111
start(Registries.TRIM_PATTERN, RegistryKey.TRIM_PATTERN).craft(TrimPattern.class, CraftTrimPattern::new, true).build().delayed(),
112112
start(Registries.DAMAGE_TYPE, RegistryKey.DAMAGE_TYPE).craft(DamageType.class, CraftDamageType::new).writable(PaperDamageTypeRegistryEntry.PaperBuilder::new).delayed(),
113113
start(Registries.WOLF_VARIANT, RegistryKey.WOLF_VARIANT).craft(Wolf.Variant.class, CraftWolf.CraftVariant::new).build().delayed(),
114+
start(Registries.WOLF_SOUND_VARIANT, RegistryKey.WOLF_SOUND_VARIANT).craft(Wolf.SoundVariant.class, CraftWolf.CraftSoundVariant::new).build(),
114115
start(Registries.ENCHANTMENT, RegistryKey.ENCHANTMENT).craft(Enchantment.class, CraftEnchantment::new).serializationUpdater(FieldRename.ENCHANTMENT_RENAME).writable(PaperEnchantmentRegistryEntry.PaperBuilder::new).delayed(),
115116
start(Registries.JUKEBOX_SONG, RegistryKey.JUKEBOX_SONG).craft(JukeboxSong.class, CraftJukeboxSong::new).build().delayed(),
116117
start(Registries.BANNER_PATTERN, RegistryKey.BANNER_PATTERN).craft(PatternType.class, CraftPatternType::new, true).writable(PaperBannerPatternRegistryEntry.PaperBuilder::new).delayed(),

paper-server/src/test/java/org/bukkit/support/provider/RegistriesArgumentProvider.java

+2
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
import net.minecraft.world.entity.animal.CowVariant;
1414
import net.minecraft.world.entity.animal.PigVariant;
1515
import net.minecraft.world.entity.animal.frog.FrogVariant;
16+
import net.minecraft.world.entity.animal.wolf.WolfSoundVariant;
1617
import net.minecraft.world.entity.animal.wolf.WolfVariant;
1718
import net.minecraft.world.entity.decoration.PaintingVariant;
1819
import net.minecraft.world.entity.npc.VillagerProfession;
@@ -102,6 +103,7 @@ public class RegistriesArgumentProvider implements ArgumentsProvider {
102103
register(RegistryKey.DAMAGE_TYPE, DamageType.class, Registries.DAMAGE_TYPE, CraftDamageType.class, net.minecraft.world.damagesource.DamageType.class);
103104
register(RegistryKey.JUKEBOX_SONG, JukeboxSong.class, Registries.JUKEBOX_SONG, CraftJukeboxSong.class, net.minecraft.world.item.JukeboxSong.class);
104105
register(RegistryKey.WOLF_VARIANT, Wolf.Variant.class, Registries.WOLF_VARIANT, CraftWolf.CraftVariant.class, WolfVariant.class);
106+
register(RegistryKey.WOLF_SOUND_VARIANT, Wolf.SoundVariant.class, Registries.WOLF_SOUND_VARIANT, CraftWolf.CraftSoundVariant.class, WolfSoundVariant.class);
105107
register(RegistryKey.ITEM, ItemType.class, Registries.ITEM, CraftItemType.class, net.minecraft.world.item.Item.class, true);
106108
register(RegistryKey.BLOCK, BlockType.class, Registries.BLOCK, CraftBlockType.class, net.minecraft.world.level.block.Block.class, true);
107109
register(RegistryKey.FROG_VARIANT, Frog.Variant.class, Registries.FROG_VARIANT, CraftFrog.CraftVariant.class, FrogVariant.class);

0 commit comments

Comments
 (0)