Mirror von
https://github.com/IntellectualSites/FastAsyncWorldEdit.git
synchronisiert 2024-11-10 05:20:04 +01:00
Check for null in ItemStacks
Dieser Commit ist enthalten in:
Ursprung
a62cf3a059
Commit
742b6b61fa
@ -640,7 +640,7 @@ public class BukkitWorld extends LocalWorld {
|
||||
|
||||
for (int i = 0; i < size; ++i) {
|
||||
ItemStack bukkitStack = inven.getItem(i);
|
||||
if (bukkitStack.getTypeId() > 0) {
|
||||
if (bukkitStack != null && bukkitStack.getTypeId() > 0) {
|
||||
contents[i] = new BaseItemStack(
|
||||
bukkitStack.getTypeId(),
|
||||
bukkitStack.getAmount(),
|
||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren