|
13 | 13 | import net.minecraft.world.entity.animal.CowVariant;
|
14 | 14 | import net.minecraft.world.entity.animal.PigVariant;
|
15 | 15 | import net.minecraft.world.entity.animal.frog.FrogVariant;
|
| 16 | +import net.minecraft.world.entity.animal.wolf.WolfSoundVariant; |
16 | 17 | import net.minecraft.world.entity.animal.wolf.WolfVariant;
|
17 | 18 | import net.minecraft.world.entity.decoration.PaintingVariant;
|
18 | 19 | import net.minecraft.world.entity.npc.VillagerProfession;
|
@@ -102,6 +103,7 @@ public class RegistriesArgumentProvider implements ArgumentsProvider {
|
102 | 103 | register(RegistryKey.DAMAGE_TYPE, DamageType.class, Registries.DAMAGE_TYPE, CraftDamageType.class, net.minecraft.world.damagesource.DamageType.class);
|
103 | 104 | register(RegistryKey.JUKEBOX_SONG, JukeboxSong.class, Registries.JUKEBOX_SONG, CraftJukeboxSong.class, net.minecraft.world.item.JukeboxSong.class);
|
104 | 105 | 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); |
105 | 107 | register(RegistryKey.ITEM, ItemType.class, Registries.ITEM, CraftItemType.class, net.minecraft.world.item.Item.class, true);
|
106 | 108 | register(RegistryKey.BLOCK, BlockType.class, Registries.BLOCK, CraftBlockType.class, net.minecraft.world.level.block.Block.class, true);
|
107 | 109 | register(RegistryKey.FROG_VARIANT, Frog.Variant.class, Registries.FROG_VARIANT, CraftFrog.CraftVariant.class, FrogVariant.class);
|
|
0 commit comments