From f1cf9849888b3aee42557d96d7fa69215fc37b1c Mon Sep 17 00:00:00 2001 From: Pedro Arenas Date: Mon, 21 Jun 2021 01:42:42 -0400 Subject: [PATCH] Fix `EntityEquipment::setDropChance` Javadoc (#5925) --- patches/api/add-get-set-drop-chance-to-EntityEquipment.patch | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/patches/api/add-get-set-drop-chance-to-EntityEquipment.patch b/patches/api/add-get-set-drop-chance-to-EntityEquipment.patch index b4fbd3259f..b660e57286 100644 --- a/patches/api/add-get-set-drop-chance-to-EntityEquipment.patch +++ b/patches/api/add-get-set-drop-chance-to-EntityEquipment.patch @@ -36,7 +36,7 @@ index 0000000000000000000000000000000000000000..00000000000000000000000000000000 + * + * @param slot the slot to set the drop chance of + * @param chance the drop chance for the slot -+ * @throws UnsupportedOperationException when called on players ++ * @throws UnsupportedOperationException when called on non-{@link Mob} entities + */ + void setDropChance(@NotNull EquipmentSlot slot, float chance); + // Paper end