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

Fixed crash with bad holding slot

Dieser Commit ist enthalten in:
Dinnerbone 2011-03-09 16:58:31 +00:00
Ursprung 63f0de5128
Commit f056fad765

Datei anzeigen

@ -24,7 +24,11 @@ public class InventoryPlayer implements IInventory {
}
public ItemStack b() {
return this.a[this.c];
if (this.c < this.a.length) {
return this.a[this.c];
} else {
return null;
}
}
private int d(int i) {