Remove new item data from serverbound items

This commit is contained in:
Nassim Jahnke 2024-09-04 17:58:44 +02:00
parent 9c35228287
commit 8a41e7add6
No known key found for this signature in database
GPG Key ID: EF6771C01F6EF02F

View File

@ -307,5 +307,9 @@ public final class BlockItemPacketRewriter1_21_2 extends StructuredItemRewriter<
dataContainer.remove(StructuredDataKey.CONSUMABLE1_21_2);
dataContainer.remove(StructuredDataKey.USE_REMAINDER);
dataContainer.remove(StructuredDataKey.USE_COOLDOWN);
dataContainer.remove(StructuredDataKey.ITEM_MODEL);
dataContainer.remove(StructuredDataKey.EQUIPPABLE);
dataContainer.remove(StructuredDataKey.GLIDER);
dataContainer.remove(StructuredDataKey.TOOLTIP_STYLE);
}
}