From 1d78a73b5d2ada0c21d47b27227831cb0960576e Mon Sep 17 00:00:00 2001 From: Joseph Hirschfeld Date: Sat, 20 Feb 2016 20:06:47 -0600 Subject: [PATCH] Ensure inv drag is in bounds - Fixes #30 --- .../0095-Ensure-inv-drag-is-in-bounds.patch | 22 +++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 Spigot-Server-Patches/0095-Ensure-inv-drag-is-in-bounds.patch diff --git a/Spigot-Server-Patches/0095-Ensure-inv-drag-is-in-bounds.patch b/Spigot-Server-Patches/0095-Ensure-inv-drag-is-in-bounds.patch new file mode 100644 index 0000000000..e44fdb9997 --- /dev/null +++ b/Spigot-Server-Patches/0095-Ensure-inv-drag-is-in-bounds.patch @@ -0,0 +1,22 @@ +From df382ed55169c36f68183a98494e24277c2b3553 Mon Sep 17 00:00:00 2001 +From: Joseph Hirschfeld +Date: Sat, 20 Feb 2016 02:19:31 -0500 +Subject: [PATCH] Ensure inv drag is in bounds + + +diff --git a/src/main/java/net/minecraft/server/Container.java b/src/main/java/net/minecraft/server/Container.java +index 3cfaa75..7fc4957 100644 +--- a/src/main/java/net/minecraft/server/Container.java ++++ b/src/main/java/net/minecraft/server/Container.java +@@ -138,7 +138,7 @@ public abstract class Container { + this.d(); + } + } else if (this.g == 1) { +- Slot slot = (Slot) this.c.get(i); ++ Slot slot = i < this.c.size() ? this.c.get(i) : null; // Paper - Ensure drag in bounds + + if (slot != null && a(slot, playerinventory.getCarried(), true) && slot.isAllowed(playerinventory.getCarried()) && playerinventory.getCarried().count > this.h.size() && this.b(slot)) { + this.h.add(slot); +-- +2.7.1 +