geforkt von Mirrors/Paper
23 Zeilen
1002 B
Diff
23 Zeilen
1002 B
Diff
From 10427e51ebb1dbd175da88010c0ba5cc0cf509e5 Mon Sep 17 00:00:00 2001
|
|
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
|
|
index 23af626..97da4c0 100644
|
|
--- a/src/main/java/net/minecraft/server/Container.java
|
|
+++ b/src/main/java/net/minecraft/server/Container.java
|
|
@@ -141,7 +141,7 @@ public abstract class Container {
|
|
this.d();
|
|
}
|
|
} else if (this.g == 1) {
|
|
- Slot slot = (Slot) this.c.get(i);
|
|
+ Slot slot = i < this.c.size() ? this.c.get(i) : null; // Paper - Ensure drag in bounds
|
|
|
|
if (slot != null && a(slot, playerinventory.getCarried(), true) && slot.isAllowed(playerinventory.getCarried()) && playerinventory.getCarried().count > this.h.size() && this.b(slot)) {
|
|
this.h.add(slot);
|
|
--
|
|
2.9.0
|
|
|