1
0
mirror of https://github.com/GeyserMC/Geyser.git synced 2025-12-28 03:09:08 +00:00

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

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++;
}
}
}