Update to Minecraft 1.21.7

This commit is contained in:
md_5 2025-07-01 00:10:00 +10:00
parent 263d8147c9
commit 16fa9b76cd
No known key found for this signature in database
GPG key ID: E8E901AC7C617C11
6 changed files with 6 additions and 1 deletions

View file

@ -5,7 +5,7 @@
<groupId>org.bukkit</groupId>
<artifactId>bukkit</artifactId>
<version>1.21.6-R0.1-SNAPSHOT</version>
<version>1.21.7-R0.1-SNAPSHOT</version>
<packaging>jar</packaging>
<name>Bukkit</name>

View file

@ -69,6 +69,7 @@ public interface Art extends OldEnum<Art>, Keyed, RegistryAware {
Art POND = getArt("pond");
Art SUNFLOWERS = getArt("sunflowers");
Art TIDES = getArt("tides");
Art DENNIS = getArt("dennis");
@NotNull
private static Art getArt(@NotNull String key) {

View file

@ -30,6 +30,7 @@ public interface JukeboxSong extends Keyed, Translatable, RegistryAware {
public static final JukeboxSong CREATOR = get("creator");
public static final JukeboxSong CREATOR_MUSIC_BOX = get("creator_music_box");
public static final JukeboxSong TEARS = get("tears");
public static final JukeboxSong LAVA_CHICKEN = get("lava_chicken");
@NotNull
private static JukeboxSong get(@NotNull String key) {

View file

@ -3044,6 +3044,7 @@ public enum Material implements Keyed, Translatable, RegistryAware {
MUSIC_DISC_CREATOR(20345, 1),
MUSIC_DISC_CREATOR_MUSIC_BOX(7202, 1),
MUSIC_DISC_FAR(31742, 1),
MUSIC_DISC_LAVA_CHICKEN(9662, 1),
MUSIC_DISC_MALL(11517, 1),
MUSIC_DISC_MELLOHI(26117, 1),
MUSIC_DISC_STAL(14989, 1),

View file

@ -1697,6 +1697,7 @@ public interface Sound extends OldEnum<Sound>, Keyed, RegistryAware {
Sound MUSIC_DISC_CREATOR = getSound("music_disc.creator");
Sound MUSIC_DISC_CREATOR_MUSIC_BOX = getSound("music_disc.creator_music_box");
Sound MUSIC_DISC_FAR = getSound("music_disc.far");
Sound MUSIC_DISC_LAVA_CHICKEN = getSound("music_disc.lava_chicken");
Sound MUSIC_DISC_MALL = getSound("music_disc.mall");
Sound MUSIC_DISC_MELLOHI = getSound("music_disc.mellohi");
Sound MUSIC_DISC_OTHERSIDE = getSound("music_disc.otherside");

View file

@ -2060,6 +2060,7 @@ public interface ItemType extends Keyed, Translatable, RegistryAware {
ItemType.Typed<ItemMeta> MUSIC_DISC_CREATOR = getItemType("music_disc_creator");
ItemType.Typed<ItemMeta> MUSIC_DISC_CREATOR_MUSIC_BOX = getItemType("music_disc_creator_music_box");
ItemType.Typed<ItemMeta> MUSIC_DISC_FAR = getItemType("music_disc_far");
ItemType.Typed<ItemMeta> MUSIC_DISC_LAVA_CHICKEN = getItemType("music_disc_lava_chicken");
ItemType.Typed<ItemMeta> MUSIC_DISC_MALL = getItemType("music_disc_mall");
ItemType.Typed<ItemMeta> MUSIC_DISC_MELLOHI = getItemType("music_disc_mellohi");
ItemType.Typed<ItemMeta> MUSIC_DISC_STAL = getItemType("music_disc_stal");