Mirror von
https://github.com/GeyserMC/Geyser.git
synchronisiert 2024-11-19 14:30:17 +01:00
Shulker box NPE fix
Dieser Commit ist enthalten in:
Ursprung
b29e0d9d10
Commit
9d540fe672
@ -59,7 +59,7 @@ public class ShulkerBoxItem extends BlockItem {
|
|||||||
List<NbtMap> itemsList = new ArrayList<>();
|
List<NbtMap> itemsList = new ArrayList<>();
|
||||||
for (int slot = 0; slot < contents.size(); slot++) {
|
for (int slot = 0; slot < contents.size(); slot++) {
|
||||||
ItemStack item = contents.get(slot);
|
ItemStack item = contents.get(slot);
|
||||||
if (item.getId() == Items.AIR_ID) {
|
if (item == null || item.getId() == Items.AIR_ID) {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
ItemMapping boxMapping = session.getItemMappings().getMapping(item.getId());
|
ItemMapping boxMapping = session.getItemMappings().getMapping(item.getId());
|
||||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren