mirror of
https://github.com/PaperMC/Paper.git
synced 2025-01-19 07:33:11 +01:00
SPIGOT-2806: Fix PlayerDropItemEvent for disconnected players
This commit is contained in:
parent
221508dce3
commit
95436219a5
1 changed files with 14 additions and 1 deletions
|
@ -97,7 +97,20 @@
|
|||
}
|
||||
|
||||
this.d();
|
||||
@@ -258,6 +318,15 @@
|
||||
@@ -165,8 +225,11 @@
|
||||
if (i == -999) {
|
||||
if (!playerinventory.getCarried().isEmpty()) {
|
||||
if (j == 0) {
|
||||
- entityhuman.drop(playerinventory.getCarried(), true);
|
||||
+ // CraftBukkit start
|
||||
+ ItemStack carried = playerinventory.getCarried();
|
||||
playerinventory.setCarried(ItemStack.a);
|
||||
+ entityhuman.drop(carried, true);
|
||||
+ // CraftBukkit start
|
||||
}
|
||||
|
||||
if (j == 1) {
|
||||
@@ -258,6 +321,15 @@
|
||||
}
|
||||
|
||||
slot2.f();
|
||||
|
|
Loading…
Reference in a new issue