aboutsummaryrefslogtreecommitdiffhomepage
path: root/removed-patches-1-20-5/0042-fix-ItemMeta-removing-CustomModelData.patch
diff options
context:
space:
mode:
Diffstat (limited to 'removed-patches-1-20-5/0042-fix-ItemMeta-removing-CustomModelData.patch')
-rw-r--r--removed-patches-1-20-5/0042-fix-ItemMeta-removing-CustomModelData.patch19
1 files changed, 0 insertions, 19 deletions
diff --git a/removed-patches-1-20-5/0042-fix-ItemMeta-removing-CustomModelData.patch b/removed-patches-1-20-5/0042-fix-ItemMeta-removing-CustomModelData.patch
deleted file mode 100644
index e42dfffc09..0000000000
--- a/removed-patches-1-20-5/0042-fix-ItemMeta-removing-CustomModelData.patch
+++ /dev/null
@@ -1,19 +0,0 @@
-From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
-From: Jake Potrebic <[email protected]>
-Date: Tue, 2 Jan 2024 10:35:46 -0800
-Subject: [PATCH] fix ItemMeta removing CustomModelData
-
-
-diff --git a/src/main/java/org/bukkit/craftbukkit/inventory/CraftMetaItem.java b/src/main/java/org/bukkit/craftbukkit/inventory/CraftMetaItem.java
-index 2157034e735c3921d4ef128688c30917aaad7161..ffdea312f93d00289364ef4d41a820cd1338f3bd 100644
---- a/src/main/java/org/bukkit/craftbukkit/inventory/CraftMetaItem.java
-+++ b/src/main/java/org/bukkit/craftbukkit/inventory/CraftMetaItem.java
-@@ -353,7 +353,7 @@ class CraftMetaItem implements ItemMeta, Damageable, Repairable, BlockDataMeta {
- }
- }
-
-- if (tag.contains(CraftMetaItem.CUSTOM_MODEL_DATA.NBT, CraftMagicNumbers.NBT.TAG_INT)) {
-+ if (tag.contains(CraftMetaItem.CUSTOM_MODEL_DATA.NBT, CraftMagicNumbers.NBT.TAG_ANY_NUMBER)) { // Paper - correctly allow any number type
- this.customModelData = tag.getInt(CraftMetaItem.CUSTOM_MODEL_DATA.NBT);
- }
- if (tag.contains(CraftMetaItem.BLOCK_DATA.NBT, CraftMagicNumbers.NBT.TAG_COMPOUND)) {