aboutsummaryrefslogtreecommitdiffhomepage
path: root/patches/server/0556-Inventory-close.patch
diff options
context:
space:
mode:
Diffstat (limited to 'patches/server/0556-Inventory-close.patch')
-rw-r--r--patches/server/0556-Inventory-close.patch25
1 files changed, 25 insertions, 0 deletions
diff --git a/patches/server/0556-Inventory-close.patch b/patches/server/0556-Inventory-close.patch
new file mode 100644
index 0000000000..9ca8b717ab
--- /dev/null
+++ b/patches/server/0556-Inventory-close.patch
@@ -0,0 +1,25 @@
+From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
+From: Jake Potrebic <[email protected]>
+Date: Tue, 11 May 2021 14:54:56 -0700
+Subject: [PATCH] Inventory#close
+
+
+diff --git a/src/main/java/org/bukkit/craftbukkit/inventory/CraftInventory.java b/src/main/java/org/bukkit/craftbukkit/inventory/CraftInventory.java
+index e824fe361286a5f41b137be92d799eef54ae4b87..3b0d3e9a067fccb10122c273aaf658ba240aa716 100644
+--- a/src/main/java/org/bukkit/craftbukkit/inventory/CraftInventory.java
++++ b/src/main/java/org/bukkit/craftbukkit/inventory/CraftInventory.java
+@@ -451,6 +451,14 @@ public class CraftInventory implements Inventory {
+ this.clear(i);
+ }
+ }
++ // Paper start
++ @Override
++ public int close() {
++ int count = this.inventory.getViewers().size();
++ com.google.common.collect.Lists.newArrayList(this.inventory.getViewers()).forEach(HumanEntity::closeInventory);
++ return count;
++ }
++ // Paper end
+
+ @Override
+ public ListIterator<ItemStack> iterator() {