geforkt von Mirrors/Paper
e3f2448ae1
Upstream has released updates that appears to apply and compile correctly. This update has not been tested by PaperMC and as with ANY update, please do your own testing Bukkit Changes: 60268ac8 Recipe choice lists should be copied once handed over to Bukkit 7ab335f2 Consistent multiple choice APIs for RecipeChoice. 2b6f3d7f SPIGOT-4586: Change PotionEffectType#value to not include null CraftBukkit Changes:2aba349f
Need to update item in hand if fish bucket pickup cancelledb634e059
SPIGOT-4591: Must mark itemstacks as dirty in case the handle itself changed1748af89
Consistent multiple choice APIs for RecipeChoice.
23 Zeilen
1.1 KiB
Diff
23 Zeilen
1.1 KiB
Diff
From 14b5c09d5c2ec1c709daba6dc1e5abf715b195ba Mon Sep 17 00:00:00 2001
|
|
From: Brokkonaut <hannos17@gmx.de>
|
|
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 ca026155d8..e967066dcf 100644
|
|
--- a/src/main/java/net/minecraft/server/PlayerConnection.java
|
|
+++ b/src/main/java/net/minecraft/server/PlayerConnection.java
|
|
@@ -2082,7 +2082,7 @@ public class PlayerConnection implements PacketListenerPlayIn, ITickable {
|
|
case CLONE:
|
|
if (packetplayinwindowclick.d() == 2) {
|
|
click = ClickType.MIDDLE;
|
|
- if (packetplayinwindowclick.c() == -999) {
|
|
+ if (packetplayinwindowclick.c() < 0) { // Paper - GH-404
|
|
action = InventoryAction.NOTHING;
|
|
} else {
|
|
Slot slot = this.player.activeContainer.getSlot(packetplayinwindowclick.c());
|
|
--
|
|
2.20.1
|
|
|