Check if Items of campfire block entity is null (#3986)

* Check if items of campfire block entity is null
* Use instanceof for Items
This commit is contained in:
Konicai 2023-07-25 13:33:50 -04:00 committed by GitHub
parent 19914a5d7a
commit 3949fb1988
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 5 deletions

View File

@ -39,11 +39,12 @@ import org.geysermc.geyser.registry.type.ItemMapping;
public class CampfireBlockEntityTranslator extends BlockEntityTranslator {
@Override
public void translateTag(NbtMapBuilder builder, CompoundTag tag, int blockState) {
ListTag items = tag.get("Items");
int i = 1;
for (Tag itemTag : items.getValue()) {
builder.put("Item" + i, getItem((CompoundTag) itemTag));
i++;
if (tag.get("Items") instanceof ListTag items) {
int i = 1;
for (Tag itemTag : items.getValue()) {
builder.put("Item" + i, getItem((CompoundTag) itemTag));
i++;
}
}
}