diff options
author | Zach Brown <[email protected]> | 2017-05-04 18:08:52 -0500 |
---|---|---|
committer | Zach Brown <[email protected]> | 2017-05-04 18:08:52 -0500 |
commit | 6c3faf6aa31eec31563d495f2af638e6d7d7bb5f (patch) | |
tree | 5307a38ace2e917639f5afd5f682449ae53f4f4a /Spigot-Server-Patches/0154-Fix-AIOOBE-in-inventory-handling.patch | |
parent | e9abb69799077641ee7948ab080a358dca97fa6a (diff) | |
download | Paper-6c3faf6aa31eec31563d495f2af638e6d7d7bb5f.tar.gz Paper-6c3faf6aa31eec31563d495f2af638e6d7d7bb5f.zip |
Update upstream B/CB/S
Diffstat (limited to 'Spigot-Server-Patches/0154-Fix-AIOOBE-in-inventory-handling.patch')
-rw-r--r-- | Spigot-Server-Patches/0154-Fix-AIOOBE-in-inventory-handling.patch | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/Spigot-Server-Patches/0154-Fix-AIOOBE-in-inventory-handling.patch b/Spigot-Server-Patches/0154-Fix-AIOOBE-in-inventory-handling.patch deleted file mode 100644 index f5b59c4d9b..0000000000 --- a/Spigot-Server-Patches/0154-Fix-AIOOBE-in-inventory-handling.patch +++ /dev/null @@ -1,22 +0,0 @@ -From aeab5af95f6f6914dab1a5752c42c8e387113e62 Mon Sep 17 00:00:00 2001 -From: Brokkonaut <[email protected]> -Date: Sun, 4 Sep 2016 16:35:43 -0500 -Subject: [PATCH] Fix AIOOBE in inventory handling - - -diff --git a/src/main/java/net/minecraft/server/PlayerConnection.java b/src/main/java/net/minecraft/server/PlayerConnection.java -index 4b79031f0..060434f32 100644 ---- a/src/main/java/net/minecraft/server/PlayerConnection.java -+++ b/src/main/java/net/minecraft/server/PlayerConnection.java -@@ -1809,7 +1809,7 @@ public class PlayerConnection implements PacketListenerPlayIn, ITickable { - case CLONE: - if (packetplayinwindowclick.c() == 2) { - click = ClickType.MIDDLE; -- if (packetplayinwindowclick.b() == -999) { -+ if (packetplayinwindowclick.b() < 0) { // Paper - GH-404 - action = InventoryAction.NOTHING; - } else { - Slot slot = this.player.activeContainer.getSlot(packetplayinwindowclick.b()); --- -2.12.2.windows.2 - |