Skip to content

Commit 643c628

Browse files
committed
feat(minecraft): update towards 25w44a
Breaking changes: - GameRules are now registered and have therefor real IDs, so all field names are changed Notable Additions: - Added Parched - Added CamelHusk See https://minecraft.wiki/w/Java_Edition_25w44a
1 parent e8afabd commit 643c628

File tree

13 files changed

+188
-73
lines changed

13 files changed

+188
-73
lines changed

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

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1850,6 +1850,28 @@ public final class SoundTypes {
18501850

18511851
public static final DefaultedRegistryReference<SoundType> ENTITY_CAMEL_HURT = SoundTypes.key(ResourceKey.minecraft("entity.camel.hurt"));
18521852

1853+
public static final DefaultedRegistryReference<SoundType> ENTITY_CAMEL_HUSK_AMBIENT = SoundTypes.key(ResourceKey.minecraft("entity.camel_husk.ambient"));
1854+
1855+
public static final DefaultedRegistryReference<SoundType> ENTITY_CAMEL_HUSK_DASH = SoundTypes.key(ResourceKey.minecraft("entity.camel_husk.dash"));
1856+
1857+
public static final DefaultedRegistryReference<SoundType> ENTITY_CAMEL_HUSK_DASH_READY = SoundTypes.key(ResourceKey.minecraft("entity.camel_husk.dash_ready"));
1858+
1859+
public static final DefaultedRegistryReference<SoundType> ENTITY_CAMEL_HUSK_DEATH = SoundTypes.key(ResourceKey.minecraft("entity.camel_husk.death"));
1860+
1861+
public static final DefaultedRegistryReference<SoundType> ENTITY_CAMEL_HUSK_EAT = SoundTypes.key(ResourceKey.minecraft("entity.camel_husk.eat"));
1862+
1863+
public static final DefaultedRegistryReference<SoundType> ENTITY_CAMEL_HUSK_HURT = SoundTypes.key(ResourceKey.minecraft("entity.camel_husk.hurt"));
1864+
1865+
public static final DefaultedRegistryReference<SoundType> ENTITY_CAMEL_HUSK_SADDLE = SoundTypes.key(ResourceKey.minecraft("entity.camel_husk.saddle"));
1866+
1867+
public static final DefaultedRegistryReference<SoundType> ENTITY_CAMEL_HUSK_SIT = SoundTypes.key(ResourceKey.minecraft("entity.camel_husk.sit"));
1868+
1869+
public static final DefaultedRegistryReference<SoundType> ENTITY_CAMEL_HUSK_STAND = SoundTypes.key(ResourceKey.minecraft("entity.camel_husk.stand"));
1870+
1871+
public static final DefaultedRegistryReference<SoundType> ENTITY_CAMEL_HUSK_STEP = SoundTypes.key(ResourceKey.minecraft("entity.camel_husk.step"));
1872+
1873+
public static final DefaultedRegistryReference<SoundType> ENTITY_CAMEL_HUSK_STEP_SAND = SoundTypes.key(ResourceKey.minecraft("entity.camel_husk.step_sand"));
1874+
18531875
public static final DefaultedRegistryReference<SoundType> ENTITY_CAMEL_SADDLE = SoundTypes.key(ResourceKey.minecraft("entity.camel.saddle"));
18541876

18551877
public static final DefaultedRegistryReference<SoundType> ENTITY_CAMEL_SIT = SoundTypes.key(ResourceKey.minecraft("entity.camel.sit"));
@@ -2478,6 +2500,8 @@ public final class SoundTypes {
24782500

24792501
public static final DefaultedRegistryReference<SoundType> ENTITY_NAUTILUS_HURT = SoundTypes.key(ResourceKey.minecraft("entity.nautilus.hurt"));
24802502

2503+
public static final DefaultedRegistryReference<SoundType> ENTITY_NAUTILUS_RIDING = SoundTypes.key(ResourceKey.minecraft("entity.nautilus.riding"));
2504+
24812505
public static final DefaultedRegistryReference<SoundType> ENTITY_NAUTILUS_SWIM = SoundTypes.key(ResourceKey.minecraft("entity.nautilus.swim"));
24822506

24832507
public static final DefaultedRegistryReference<SoundType> ENTITY_OCELOT_AMBIENT = SoundTypes.key(ResourceKey.minecraft("entity.ocelot.ambient"));
@@ -2512,6 +2536,14 @@ public final class SoundTypes {
25122536

25132537
public static final DefaultedRegistryReference<SoundType> ENTITY_PANDA_WORRIED_AMBIENT = SoundTypes.key(ResourceKey.minecraft("entity.panda.worried_ambient"));
25142538

2539+
public static final DefaultedRegistryReference<SoundType> ENTITY_PARCHED_AMBIENT = SoundTypes.key(ResourceKey.minecraft("entity.parched.ambient"));
2540+
2541+
public static final DefaultedRegistryReference<SoundType> ENTITY_PARCHED_DEATH = SoundTypes.key(ResourceKey.minecraft("entity.parched.death"));
2542+
2543+
public static final DefaultedRegistryReference<SoundType> ENTITY_PARCHED_HURT = SoundTypes.key(ResourceKey.minecraft("entity.parched.hurt"));
2544+
2545+
public static final DefaultedRegistryReference<SoundType> ENTITY_PARCHED_STEP = SoundTypes.key(ResourceKey.minecraft("entity.parched.step"));
2546+
25152547
public static final DefaultedRegistryReference<SoundType> ENTITY_PARROT_AMBIENT = SoundTypes.key(ResourceKey.minecraft("entity.parrot.ambient"));
25162548

25172549
public static final DefaultedRegistryReference<SoundType> ENTITY_PARROT_DEATH = SoundTypes.key(ResourceKey.minecraft("entity.parrot.death"));
@@ -2528,6 +2560,8 @@ public final class SoundTypes {
25282560

25292561
public static final DefaultedRegistryReference<SoundType> ENTITY_PARROT_IMITATE_BREEZE = SoundTypes.key(ResourceKey.minecraft("entity.parrot.imitate.breeze"));
25302562

2563+
public static final DefaultedRegistryReference<SoundType> ENTITY_PARROT_IMITATE_CAMEL_HUSK = SoundTypes.key(ResourceKey.minecraft("entity.parrot.imitate.camel_husk"));
2564+
25312565
public static final DefaultedRegistryReference<SoundType> ENTITY_PARROT_IMITATE_CREAKING = SoundTypes.key(ResourceKey.minecraft("entity.parrot.imitate.creaking"));
25322566

25332567
public static final DefaultedRegistryReference<SoundType> ENTITY_PARROT_IMITATE_CREEPER = SoundTypes.key(ResourceKey.minecraft("entity.parrot.imitate.creeper"));
@@ -2554,6 +2588,8 @@ public final class SoundTypes {
25542588

25552589
public static final DefaultedRegistryReference<SoundType> ENTITY_PARROT_IMITATE_MAGMA_CUBE = SoundTypes.key(ResourceKey.minecraft("entity.parrot.imitate.magma_cube"));
25562590

2591+
public static final DefaultedRegistryReference<SoundType> ENTITY_PARROT_IMITATE_PARCHED = SoundTypes.key(ResourceKey.minecraft("entity.parrot.imitate.parched"));
2592+
25572593
public static final DefaultedRegistryReference<SoundType> ENTITY_PARROT_IMITATE_PHANTOM = SoundTypes.key(ResourceKey.minecraft("entity.parrot.imitate.phantom"));
25582594

25592595
public static final DefaultedRegistryReference<SoundType> ENTITY_PARROT_IMITATE_PIGLIN = SoundTypes.key(ResourceKey.minecraft("entity.parrot.imitate.piglin"));
@@ -2592,6 +2628,10 @@ public final class SoundTypes {
25922628

25932629
public static final DefaultedRegistryReference<SoundType> ENTITY_PARROT_IMITATE_ZOMBIE = SoundTypes.key(ResourceKey.minecraft("entity.parrot.imitate.zombie"));
25942630

2631+
public static final DefaultedRegistryReference<SoundType> ENTITY_PARROT_IMITATE_ZOMBIE_HORSE = SoundTypes.key(ResourceKey.minecraft("entity.parrot.imitate.zombie_horse"));
2632+
2633+
public static final DefaultedRegistryReference<SoundType> ENTITY_PARROT_IMITATE_ZOMBIE_NAUTILUS = SoundTypes.key(ResourceKey.minecraft("entity.parrot.imitate.zombie_nautilus"));
2634+
25952635
public static final DefaultedRegistryReference<SoundType> ENTITY_PARROT_IMITATE_ZOMBIE_VILLAGER = SoundTypes.key(ResourceKey.minecraft("entity.parrot.imitate.zombie_villager"));
25962636

25972637
public static final DefaultedRegistryReference<SoundType> ENTITY_PARROT_STEP = SoundTypes.key(ResourceKey.minecraft("entity.parrot.step"));
@@ -3450,6 +3490,10 @@ public final class SoundTypes {
34503490

34513491
public static final DefaultedRegistryReference<SoundType> ITEM_MACE_SMASH_GROUND_HEAVY = SoundTypes.key(ResourceKey.minecraft("item.mace.smash_ground_heavy"));
34523492

3493+
public static final DefaultedRegistryReference<SoundType> ITEM_NAUTILUS_SADDLE_EQUIP = SoundTypes.key(ResourceKey.minecraft("item.nautilus_saddle_equip"));
3494+
3495+
public static final DefaultedRegistryReference<SoundType> ITEM_NAUTILUS_SADDLE_UNDERWATER_EQUIP = SoundTypes.key(ResourceKey.minecraft("item.nautilus_saddle_underwater_equip"));
3496+
34533497
public static final DefaultedRegistryReference<SoundType> ITEM_NETHER_WART_PLANT = SoundTypes.key(ResourceKey.minecraft("item.nether_wart.plant"));
34543498

34553499
public static final DefaultedRegistryReference<SoundType> ITEM_OMINOUS_BOTTLE_DISPOSE = SoundTypes.key(ResourceKey.minecraft("item.ominous_bottle.dispose"));

src/main/java/org/spongepowered/api/entity/EntityTypes.java

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,11 +61,12 @@
6161
import org.spongepowered.api.entity.living.animal.Turtle;
6262
import org.spongepowered.api.entity.living.animal.Wolf;
6363
import org.spongepowered.api.entity.living.animal.ZombieNautilus;
64+
import org.spongepowered.api.entity.living.animal.camel.Camel;
65+
import org.spongepowered.api.entity.living.animal.camel.CamelHusk;
6466
import org.spongepowered.api.entity.living.animal.cow.Cow;
6567
import org.spongepowered.api.entity.living.animal.cow.Mooshroom;
6668
import org.spongepowered.api.entity.living.animal.frog.Frog;
6769
import org.spongepowered.api.entity.living.animal.frog.Tadpole;
68-
import org.spongepowered.api.entity.living.animal.horse.Camel;
6970
import org.spongepowered.api.entity.living.animal.horse.Donkey;
7071
import org.spongepowered.api.entity.living.animal.horse.Horse;
7172
import org.spongepowered.api.entity.living.animal.horse.Mule;
@@ -110,6 +111,7 @@
110111
import org.spongepowered.api.entity.living.monster.raider.illager.spellcaster.Evoker;
111112
import org.spongepowered.api.entity.living.monster.raider.illager.spellcaster.Illusioner;
112113
import org.spongepowered.api.entity.living.monster.skeleton.Bogged;
114+
import org.spongepowered.api.entity.living.monster.skeleton.Parched;
113115
import org.spongepowered.api.entity.living.monster.skeleton.Skeleton;
114116
import org.spongepowered.api.entity.living.monster.skeleton.Stray;
115117
import org.spongepowered.api.entity.living.monster.skeleton.WitherSkeleton;
@@ -210,6 +212,8 @@ public final class EntityTypes {
210212

211213
public static final DefaultedRegistryReference<EntityType<Camel>> CAMEL = EntityTypes.key(ResourceKey.minecraft("camel"));
212214

215+
public static final DefaultedRegistryReference<EntityType<CamelHusk>> CAMEL_HUSK = EntityTypes.key(ResourceKey.minecraft("camel_husk"));
216+
213217
public static final DefaultedRegistryReference<EntityType<Cat>> CAT = EntityTypes.key(ResourceKey.minecraft("cat"));
214218

215219
public static final DefaultedRegistryReference<EntityType<CaveSpider>> CAVE_SPIDER = EntityTypes.key(ResourceKey.minecraft("cave_spider"));
@@ -368,6 +372,8 @@ public final class EntityTypes {
368372

369373
public static final DefaultedRegistryReference<EntityType<Panda>> PANDA = EntityTypes.key(ResourceKey.minecraft("panda"));
370374

375+
public static final DefaultedRegistryReference<EntityType<Parched>> PARCHED = EntityTypes.key(ResourceKey.minecraft("parched"));
376+
371377
public static final DefaultedRegistryReference<EntityType<Parrot>> PARROT = EntityTypes.key(ResourceKey.minecraft("parrot"));
372378

373379
public static final DefaultedRegistryReference<EntityType<Phantom>> PHANTOM = EntityTypes.key(ResourceKey.minecraft("phantom"));

src/main/java/org/spongepowered/api/entity/living/animal/horse/Camel.java renamed to src/main/java/org/spongepowered/api/entity/living/animal/camel/Camel.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,10 @@
2222
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
2323
* THE SOFTWARE.
2424
*/
25-
package org.spongepowered.api.entity.living.animal.horse;
25+
package org.spongepowered.api.entity.living.animal.camel;
2626

2727
import org.spongepowered.api.entity.living.animal.Sittable;
28+
import org.spongepowered.api.entity.living.animal.horse.HorseLike;
2829

2930
/**
3031
* Represents a Camel.
Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
/*
2+
* This file is part of SpongeAPI, licensed under the MIT License (MIT).
3+
*
4+
* Copyright (c) SpongePowered <https://www.spongepowered.org>
5+
* Copyright (c) contributors
6+
*
7+
* Permission is hereby granted, free of charge, to any person obtaining a copy
8+
* of this software and associated documentation files (the "Software"), to deal
9+
* in the Software without restriction, including without limitation the rights
10+
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
11+
* copies of the Software, and to permit persons to whom the Software is
12+
* furnished to do so, subject to the following conditions:
13+
*
14+
* The above copyright notice and this permission notice shall be included in
15+
* all copies or substantial portions of the Software.
16+
*
17+
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18+
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19+
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
20+
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21+
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22+
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
23+
* THE SOFTWARE.
24+
*/
25+
package org.spongepowered.api.entity.living.animal.camel;
26+
27+
/**
28+
* Represents a Camel Husk.
29+
* @see <a href="https://minecraft.wiki/w/Camel_Husk">Minecraft Wiki</a>
30+
*/
31+
public interface CamelHusk extends Camel {
32+
}
Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
/*
2+
* This file is part of SpongeAPI, licensed under the MIT License (MIT).
3+
*
4+
* Copyright (c) SpongePowered <https://www.spongepowered.org>
5+
* Copyright (c) contributors
6+
*
7+
* Permission is hereby granted, free of charge, to any person obtaining a copy
8+
* of this software and associated documentation files (the "Software"), to deal
9+
* in the Software without restriction, including without limitation the rights
10+
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
11+
* copies of the Software, and to permit persons to whom the Software is
12+
* furnished to do so, subject to the following conditions:
13+
*
14+
* The above copyright notice and this permission notice shall be included in
15+
* all copies or substantial portions of the Software.
16+
*
17+
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18+
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19+
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
20+
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21+
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22+
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
23+
* THE SOFTWARE.
24+
*/
25+
package org.spongepowered.api.entity.living.monster.skeleton;
26+
27+
/**
28+
* Represents a Parched Skeleton.
29+
* See <a href="https://minecraft.wiki/w/Parched">Minecraft Wiki</a>
30+
*/
31+
public interface Parched extends SkeletonLike {
32+
}

src/main/java/org/spongepowered/api/item/ItemTypes.java

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -428,6 +428,8 @@ public final class ItemTypes {
428428

429429
public static final DefaultedRegistryReference<ItemType> CALIBRATED_SCULK_SENSOR = ItemTypes.key(ResourceKey.minecraft("calibrated_sculk_sensor"));
430430

431+
public static final DefaultedRegistryReference<ItemType> CAMEL_HUSK_SPAWN_EGG = ItemTypes.key(ResourceKey.minecraft("camel_husk_spawn_egg"));
432+
431433
public static final DefaultedRegistryReference<ItemType> CAMEL_SPAWN_EGG = ItemTypes.key(ResourceKey.minecraft("camel_spawn_egg"));
432434

433435
public static final DefaultedRegistryReference<ItemType> CAMPFIRE = ItemTypes.key(ResourceKey.minecraft("campfire"));
@@ -1972,6 +1974,8 @@ public final class ItemTypes {
19721974

19731975
public static final DefaultedRegistryReference<ItemType> PAPER = ItemTypes.key(ResourceKey.minecraft("paper"));
19741976

1977+
public static final DefaultedRegistryReference<ItemType> PARCHED_SPAWN_EGG = ItemTypes.key(ResourceKey.minecraft("parched_spawn_egg"));
1978+
19751979
public static final DefaultedRegistryReference<ItemType> PARROT_SPAWN_EGG = ItemTypes.key(ResourceKey.minecraft("parrot_spawn_egg"));
19761980

19771981
public static final DefaultedRegistryReference<ItemType> PEARLESCENT_FROGLIGHT = ItemTypes.key(ResourceKey.minecraft("pearlescent_froglight"));

src/main/java/org/spongepowered/api/item/inventory/equipment/EquipmentConditions.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,8 @@ public final class EquipmentConditions {
5656

5757
public static final DefaultedRegistryReference<EquipmentCondition> OFFHAND = EquipmentConditions.key(ResourceKey.sponge("offhand"));
5858

59+
public static final DefaultedRegistryReference<EquipmentCondition> SADDLE = EquipmentConditions.key(ResourceKey.sponge("saddle"));
60+
5961
private EquipmentConditions() {
6062
}
6163

src/main/java/org/spongepowered/api/statistic/Statistics.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -134,6 +134,8 @@ public final class Statistics {
134134

135135
public static final DefaultedRegistryReference<Statistic> MOB_KILLS = Statistics.key(ResourceKey.minecraft("mob_kills"));
136136

137+
public static final DefaultedRegistryReference<Statistic> NAUTILUS_ONE_CM = Statistics.key(ResourceKey.minecraft("nautilus_one_cm"));
138+
137139
public static final DefaultedRegistryReference<Statistic> OPEN_BARREL = Statistics.key(ResourceKey.minecraft("open_barrel"));
138140

139141
public static final DefaultedRegistryReference<Statistic> OPEN_CHEST = Statistics.key(ResourceKey.minecraft("open_chest"));

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

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,6 @@ public final class BiomeTags {
4141

4242
public static final DefaultedTag<Biome> ALLOWS_TROPICAL_FISH_SPAWNS_AT_ANY_HEIGHT = BiomeTags.key(ResourceKey.minecraft("allows_tropical_fish_spawns_at_any_height"));
4343

44-
public static final DefaultedTag<Biome> HAS_CLOSER_WATER_FOG = BiomeTags.key(ResourceKey.minecraft("has_closer_water_fog"));
45-
4644
public static final DefaultedTag<Biome> HAS_STRUCTURE_ANCIENT_CITY = BiomeTags.key(ResourceKey.minecraft("has_structure/ancient_city"));
4745

4846
public static final DefaultedTag<Biome> HAS_STRUCTURE_BASTION_REMNANT = BiomeTags.key(ResourceKey.minecraft("has_structure/bastion_remnant"));
@@ -111,8 +109,6 @@ public final class BiomeTags {
111109

112110
public static final DefaultedTag<Biome> HAS_STRUCTURE_WOODLAND_MANSION = BiomeTags.key(ResourceKey.minecraft("has_structure/woodland_mansion"));
113111

114-
public static final DefaultedTag<Biome> INCREASED_FIRE_BURNOUT = BiomeTags.key(ResourceKey.minecraft("increased_fire_burnout"));
115-
116112
public static final DefaultedTag<Biome> IS_BADLANDS = BiomeTags.key(ResourceKey.minecraft("is_badlands"));
117113

118114
public static final DefaultedTag<Biome> IS_BEACH = BiomeTags.key(ResourceKey.minecraft("is_beach"));
@@ -145,8 +141,6 @@ public final class BiomeTags {
145141

146142
public static final DefaultedTag<Biome> MORE_FREQUENT_DROWNED_SPAWNS = BiomeTags.key(ResourceKey.minecraft("more_frequent_drowned_spawns"));
147143

148-
public static final DefaultedTag<Biome> PLAYS_UNDERWATER_MUSIC = BiomeTags.key(ResourceKey.minecraft("plays_underwater_music"));
149-
150144
public static final DefaultedTag<Biome> POLAR_BEARS_SPAWN_ON_ALTERNATE_BLOCKS = BiomeTags.key(ResourceKey.minecraft("polar_bears_spawn_on_alternate_blocks"));
151145

152146
public static final DefaultedTag<Biome> PRODUCES_CORALS_FROM_BONEMEAL = BiomeTags.key(ResourceKey.minecraft("produces_corals_from_bonemeal"));
@@ -155,8 +149,6 @@ public final class BiomeTags {
155149

156150
public static final DefaultedTag<Biome> REQUIRED_OCEAN_MONUMENT_SURROUNDING = BiomeTags.key(ResourceKey.minecraft("required_ocean_monument_surrounding"));
157151

158-
public static final DefaultedTag<Biome> SNOW_GOLEM_MELTS = BiomeTags.key(ResourceKey.minecraft("snow_golem_melts"));
159-
160152
public static final DefaultedTag<Biome> SPAWNS_COLD_VARIANT_FARM_ANIMALS = BiomeTags.key(ResourceKey.minecraft("spawns_cold_variant_farm_animals"));
161153

162154
public static final DefaultedTag<Biome> SPAWNS_COLD_VARIANT_FROGS = BiomeTags.key(ResourceKey.minecraft("spawns_cold_variant_frogs"));

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

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,6 @@ public final class EnchantmentTypeTags {
5151

5252
public static final DefaultedTag<EnchantmentType> EXCLUSIVE_SET_DAMAGE = EnchantmentTypeTags.key(ResourceKey.minecraft("exclusive_set/damage"));
5353

54-
public static final DefaultedTag<EnchantmentType> EXCLUSIVE_SET_LUNGE = EnchantmentTypeTags.key(ResourceKey.minecraft("exclusive_set/lunge"));
55-
5654
public static final DefaultedTag<EnchantmentType> EXCLUSIVE_SET_MINING = EnchantmentTypeTags.key(ResourceKey.minecraft("exclusive_set/mining"));
5755

5856
public static final DefaultedTag<EnchantmentType> EXCLUSIVE_SET_RIPTIDE = EnchantmentTypeTags.key(ResourceKey.minecraft("exclusive_set/riptide"));

0 commit comments

Comments
 (0)