2019-04-23 04:47:07 +00:00
|
|
|
From 645bb0bb0df195ec9f1eb576f86119b6eb3e4012 Mon Sep 17 00:00:00 2001
|
2016-02-29 23:09:49 +00:00
|
|
|
From: Joseph Hirschfeld <joe@ibj.io>
|
|
|
|
Date: Thu, 3 Mar 2016 02:33:53 -0600
|
|
|
|
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
|
2019-04-23 04:47:07 +00:00
|
|
|
index b06f229534..2f0f667ad6 100644
|
2016-02-29 23:09:49 +00:00
|
|
|
--- a/src/main/java/net/minecraft/server/Container.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/Container.java
|
2018-07-23 22:57:54 +00:00
|
|
|
@@ -139,7 +139,7 @@ public abstract class Container {
|
2018-07-15 01:53:17 +00:00
|
|
|
this.c();
|
2016-04-10 02:33:29 +00:00
|
|
|
}
|
|
|
|
} else if (this.g == 1) {
|
2017-09-18 11:04:01 +00:00
|
|
|
- Slot slot = (Slot) this.slots.get(i);
|
|
|
|
+ Slot slot = i < this.slots.size() ? this.slots.get(i) : null; // Paper - Ensure drag in bounds
|
2016-02-29 23:09:49 +00:00
|
|
|
|
2016-11-17 02:23:38 +00:00
|
|
|
itemstack1 = playerinventory.getCarried();
|
|
|
|
if (slot != null && a(slot, itemstack1, true) && slot.isAllowed(itemstack1) && (this.dragType == 2 || itemstack1.getCount() > this.h.size()) && this.b(slot)) {
|
2016-02-29 23:09:49 +00:00
|
|
|
--
|
2019-04-23 04:47:07 +00:00
|
|
|
2.21.0
|
2016-02-29 23:09:49 +00:00
|
|
|
|