Skip to content

Commit a776d7a

Browse files
committed
update entity effect
1 parent b8078d3 commit a776d7a

File tree

1 file changed

+18
-2
lines changed

1 file changed

+18
-2
lines changed

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

+18-2
Original file line numberDiff line numberDiff line change
@@ -247,11 +247,17 @@ public enum EntityEffect {
247247
// 22-28 player internal flags
248248
/**
249249
* Shield blocks attack.
250+
*
251+
* @deprecated replaced by a component
250252
*/
253+
@Deprecated(since = "1.21.5", forRemoval = true)
251254
SHIELD_BLOCK(29, LivingEntity.class),
252255
/**
253256
* Shield breaks.
257+
*
258+
* @deprecated replaced by a component
254259
*/
260+
@Deprecated(since = "1.21.5", forRemoval = true)
255261
SHIELD_BREAK(30, LivingEntity.class),
256262
// 31 - unused
257263
/**
@@ -359,7 +365,7 @@ public enum EntityEffect {
359365
*/
360366
BREAK_EQUIPMENT_MAIN_HAND(47, LivingEntity.class),
361367
/**
362-
* Entity breaks item in off hand.
368+
* Entity breaks item in off-hand.
363369
*
364370
* @see org.bukkit.inventory.EquipmentSlot#OFF_HAND
365371
*/
@@ -460,7 +466,17 @@ public enum EntityEffect {
460466
/**
461467
* A creaking shaking when being hit.
462468
*/
463-
SHAKE(66, Creaking.class);
469+
SHAKE(66, Creaking.class),
470+
/**
471+
* Drown particles for entities.
472+
*/
473+
DROWN_PARTICLES(67, LivingEntity.class),
474+
/**
475+
* Entity breaks item in saddle slot.
476+
*
477+
* @see org.bukkit.inventory.EquipmentSlot#SADDLE
478+
*/
479+
SADDLE_BREAK(68, LivingEntity.class);
464480

465481
private final byte data;
466482
private final Set<Class<? extends Entity>> applicableClasses;

0 commit comments

Comments
 (0)