geforkt von Mirrors/Paper
30 Zeilen
1.0 KiB
Diff
30 Zeilen
1.0 KiB
Diff
|
--- work/CraftBukkit/nms-patches/PlayerInventory.patch 2019-06-08 15:17:36.377383665 -0500
|
||
|
+++ work/CraftBukkit/nms-patches/PlayerInventory.patch 2019-06-08 15:17:36.377383665 -0500
|
||
|
@@ -69,7 +69,7 @@
|
||
|
public PlayerInventory(EntityHuman entityhuman) {
|
||
|
this.items = NonNullList.a(36, ItemStack.a);
|
||
|
this.armor = NonNullList.a(4, ItemStack.a);
|
||
|
-@@ -41,6 +96,22 @@
|
||
|
+@@ -41,6 +96,28 @@
|
||
|
return itemstack.getItem() == itemstack1.getItem() && ItemStack.equals(itemstack, itemstack1);
|
||
|
}
|
||
|
|
||
|
@@ -98,7 +98,7 @@
|
||
|
public int getFirstEmptySlotIndex() {
|
||
|
for (int i = 0; i < this.items.size(); ++i) {
|
||
|
if (((ItemStack) this.items.get(i)).isEmpty()) {
|
||
|
-@@ -513,8 +584,9 @@
|
||
|
+@@ -513,8 +590,9 @@
|
||
|
ItemStack itemstack = (ItemStack) this.armor.get(i);
|
||
|
|
||
|
if (itemstack.getItem() instanceof ItemArmor) {
|
||
|
@@ -109,7 +109,7 @@
|
||
|
});
|
||
|
}
|
||
|
}
|
||
|
-@@ -550,6 +622,11 @@
|
||
|
+@@ -550,6 +628,11 @@
|
||
|
}
|
||
|
|
||
|
public ItemStack getCarried() {
|