Shulker box NPE fix

This commit is contained in:
Camotoy 2024-04-24 16:41:02 -04:00
parent b29e0d9d10
commit 9d540fe672
No known key found for this signature in database
GPG Key ID: 7EEFB66FE798081F
1 changed files with 1 additions and 1 deletions

View File

@ -59,7 +59,7 @@ public class ShulkerBoxItem extends BlockItem {
List<NbtMap> itemsList = new ArrayList<>();
for (int slot = 0; slot < contents.size(); slot++) {
ItemStack item = contents.get(slot);
if (item.getId() == Items.AIR_ID) {
if (item == null || item.getId() == Items.AIR_ID) {
continue;
}
ItemMapping boxMapping = session.getItemMappings().getMapping(item.getId());