diff options
Diffstat (limited to 'Spigot-Server-Patches/0168-Fix-AIOOBE-in-inventory-handling.patch')
-rw-r--r-- | Spigot-Server-Patches/0168-Fix-AIOOBE-in-inventory-handling.patch | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Spigot-Server-Patches/0168-Fix-AIOOBE-in-inventory-handling.patch b/Spigot-Server-Patches/0168-Fix-AIOOBE-in-inventory-handling.patch index 0c0106da48..2082f65aa2 100644 --- a/Spigot-Server-Patches/0168-Fix-AIOOBE-in-inventory-handling.patch +++ b/Spigot-Server-Patches/0168-Fix-AIOOBE-in-inventory-handling.patch @@ -1,14 +1,14 @@ -From c0bf573cbb3f25ec137f12dcfccf400e38debba2 Mon Sep 17 00:00:00 2001 +From 24da669ca98bf8b5667a3a9c9f9ade3d0c7e9fb5 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 972b85b..50b23ed 100644 +index 11870cd..ecafc26 100644 --- a/src/main/java/net/minecraft/server/PlayerConnection.java +++ b/src/main/java/net/minecraft/server/PlayerConnection.java -@@ -1822,7 +1822,7 @@ public class PlayerConnection implements PacketListenerPlayIn, ITickable { +@@ -1824,7 +1824,7 @@ public class PlayerConnection implements PacketListenerPlayIn, ITickable { case CLONE: if (packetplayinwindowclick.c() == 2) { click = ClickType.MIDDLE; @@ -18,5 +18,5 @@ index 972b85b..50b23ed 100644 } else { Slot slot = this.player.activeContainer.getSlot(packetplayinwindowclick.b()); -- -2.10.0 +2.9.3 |