3
0
Mirror von https://github.com/PaperMC/Paper.git synchronisiert 2024-11-17 05:20:05 +01:00

Fixed the fix of the inventory dupe bug

Dieser Commit ist enthalten in:
Dinnerbone 2011-03-08 21:52:17 +00:00
Ursprung 7de9091036
Commit cdcb947532

Datei anzeigen

@ -101,7 +101,7 @@ public class EntityPlayer extends EntityHuman implements ICrafting {
for (int i = 0; i < inventory.b.length; ++i) {
if (inventory.b[i] != null) {
loot.add(new CraftItemStack(inventory.b[i]));
inventory.a[i] = null;
inventory.b[i] = null;
}
}