@@ -247,11 +247,17 @@ public enum EntityEffect {
247
247
// 22-28 player internal flags
248
248
/**
249
249
* Shield blocks attack.
250
+ *
251
+ * @deprecated replaced by a component
250
252
*/
253
+ @ Deprecated (since = "1.21.5" , forRemoval = true )
251
254
SHIELD_BLOCK (29 , LivingEntity .class ),
252
255
/**
253
256
* Shield breaks.
257
+ *
258
+ * @deprecated replaced by a component
254
259
*/
260
+ @ Deprecated (since = "1.21.5" , forRemoval = true )
255
261
SHIELD_BREAK (30 , LivingEntity .class ),
256
262
// 31 - unused
257
263
/**
@@ -359,7 +365,7 @@ public enum EntityEffect {
359
365
*/
360
366
BREAK_EQUIPMENT_MAIN_HAND (47 , LivingEntity .class ),
361
367
/**
362
- * Entity breaks item in off hand.
368
+ * Entity breaks item in off- hand.
363
369
*
364
370
* @see org.bukkit.inventory.EquipmentSlot#OFF_HAND
365
371
*/
@@ -460,7 +466,17 @@ public enum EntityEffect {
460
466
/**
461
467
* A creaking shaking when being hit.
462
468
*/
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 );
464
480
465
481
private final byte data ;
466
482
private final Set <Class <? extends Entity >> applicableClasses ;
0 commit comments