diff --git a/paper-api/src/main/java/org/bukkit/inventory/ItemFlag.java b/paper-api/src/main/java/org/bukkit/inventory/ItemFlag.java
index 1b3580d186..5b8dac777b 100644
--- a/paper-api/src/main/java/org/bukkit/inventory/ItemFlag.java
+++ b/paper-api/src/main/java/org/bukkit/inventory/ItemFlag.java
@@ -38,4 +38,27 @@ public enum ItemFlag {
* Setting to show/hide armor trim from armor.
*/
HIDE_ARMOR_TRIM;
+ // Paper start
+ /**
+ * Setting to show/hide item-specific information, including, but not limited to:
+ *
+ * - Potion effects on potions, tipped arrows, and suspicious stew
+ * - Enchanted book enchantments
+ * - Book author and generation
+ * - Record names
+ * - Patterns of banners and shields
+ * - Fish bucket variants
+ * - Instrument item descriptions (i.e. goat horn sounds)
+ * - Map data
+ * - Firework data
+ * - Crossbow projectile info
+ * - Bundle fullness
+ * - Shulker box contents
+ * - Spawner descriptions
+ *
+ * @deprecated use {@link #HIDE_ADDITIONAL_TOOLTIP}
+ */
+ @Deprecated(since = "1.20.5")
+ public static final ItemFlag HIDE_ITEM_SPECIFICS = HIDE_ADDITIONAL_TOOLTIP;
+ // Paper end
}