Fix body equipmentslot and effect enum

This commit is contained in:
Nassim Jahnke
2024-06-14 18:53:32 +02:00
parent 1aee096320
commit 3f581a6024
5 changed files with 32 additions and 5 deletions

View File

@@ -21,6 +21,16 @@ index 0000000000000000000000000000000000000000..00000000000000000000000000000000
* additional info.
*/
POTION_BREAK(2002, Type.VISUAL, Color.class),
@@ -0,0 +0,0 @@ public enum Effect {
PORTAL_TRAVEL(1032, Type.SOUND),
/**
* The sound played when launching an endereye
+ * @deprecated No longer exists
*/
+ @Deprecated(forRemoval = true, since = "1.21") // Paper
ENDEREYE_LAUNCH(1003, Type.SOUND),
/**
* The sound played when launching a firework
@@ -0,0 +0,0 @@ public enum Effect {
/**
* Particles displayed when a villager grows a plant, data
@@ -208,7 +218,9 @@ index 0000000000000000000000000000000000000000..00000000000000000000000000000000
+ /**
+ * {@link Boolean} param is true for "ominous" vaults
+ */
+ TRIAL_SPAWNER_SPAWN_ITEM(3021, Type.VISUAL, Boolean.class)
+ TRIAL_SPAWNER_SPAWN_ITEM(3021, Type.VISUAL, Boolean.class),
+
+ SOUND_WITH_CHARGE_SHOT(1051, Type.SOUND),
;
+ private static final org.apache.logging.log4j.Logger LOGGER = org.apache.logging.log4j.LogManager.getLogger();
+ // Paper end