diff options
Diffstat (limited to 'patches/api/0182-Add-Raw-Byte-ItemStack-Serialization.patch')
-rw-r--r-- | patches/api/0182-Add-Raw-Byte-ItemStack-Serialization.patch | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/patches/api/0182-Add-Raw-Byte-ItemStack-Serialization.patch b/patches/api/0182-Add-Raw-Byte-ItemStack-Serialization.patch index f4750496c2..bfdff2a3f4 100644 --- a/patches/api/0182-Add-Raw-Byte-ItemStack-Serialization.patch +++ b/patches/api/0182-Add-Raw-Byte-ItemStack-Serialization.patch @@ -22,7 +22,7 @@ index 6e67fdb091a006d2d13bc2d93db4d55348af4c8f..e41d5d9b810c8816cd0d1eba5fd1ea56 // Paper end } diff --git a/src/main/java/org/bukkit/inventory/ItemStack.java b/src/main/java/org/bukkit/inventory/ItemStack.java -index e9c29fc1db686b80bc2477d78ec2b361b8600b9e..dda3a421953761dfca5f2f6498905c43fb6fe37d 100644 +index e9c29fc1db686b80bc2477d78ec2b361b8600b9e..af09398e0864d338da530495bfd577db8adbe65a 100644 --- a/src/main/java/org/bukkit/inventory/ItemStack.java +++ b/src/main/java/org/bukkit/inventory/ItemStack.java @@ -661,6 +661,117 @@ public class ItemStack implements Cloneable, ConfigurationSerializable, Translat @@ -60,7 +60,7 @@ index e9c29fc1db686b80bc2477d78ec2b361b8600b9e..dda3a421953761dfca5f2f6498905c43 + private static final byte ARRAY_SERIALIZATION_VERSION = 1; + + /** -+ * Serializes a collection of items to raw bytes in NBT. Serializes empty items as null. ++ * Serializes a collection of items to raw bytes in NBT. Serializes null items as {@link #empty()}. + * <p> + * If you need a string representation to put into a file, you can for example use {@link java.util.Base64} encoding. + * @@ -91,7 +91,7 @@ index e9c29fc1db686b80bc2477d78ec2b361b8600b9e..dda3a421953761dfca5f2f6498905c43 + } + + /** -+ * Serializes a collection of items to raw bytes in NBT. Serializes empty items as null. ++ * Serializes a collection of items to raw bytes in NBT. Serializes null items as {@link #empty()}. + * <p> + * If you need a string representation to put into a file, you can for example use {@link java.util.Base64} encoding. + * |