2019-06-25 21:18:50 +02:00
|
|
|
From 7faee6b12019d2729f6714e3c97c8e5baa2aef99 Mon Sep 17 00:00:00 2001
|
2016-03-01 00:09:49 +01: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-06-06 17:36:57 +02:00
|
|
|
index 5cebc7506f..b4fcab4f08 100644
|
2016-03-01 00:09:49 +01:00
|
|
|
--- a/src/main/java/net/minecraft/server/Container.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/Container.java
|
2019-04-26 03:24:00 +02:00
|
|
|
@@ -201,7 +201,7 @@ public abstract class Container {
|
|
|
|
this.d();
|
2016-04-10 04:33:29 +02:00
|
|
|
}
|
2019-04-26 03:24:00 +02:00
|
|
|
} else if (this.h == 1) {
|
2017-09-18 13:04:01 +02: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-03-01 00:09:49 +01:00
|
|
|
|
2016-11-17 03:23:38 +01:00
|
|
|
itemstack1 = playerinventory.getCarried();
|
2019-04-26 03:24:00 +02:00
|
|
|
if (slot != null && a(slot, itemstack1, true) && slot.isAllowed(itemstack1) && (this.dragType == 2 || itemstack1.getCount() > this.i.size()) && this.b(slot)) {
|
2016-03-01 00:09:49 +01:00
|
|
|
--
|
2019-06-25 21:18:50 +02:00
|
|
|
2.22.0
|
2016-03-01 00:09:49 +01:00
|
|
|
|