Check if firework item explosions tag is null (#626)

This commit is contained in:
Camotoy 2020-05-23 21:16:11 -04:00 committed by GitHub
parent a49f6fe0e3
commit fe6257bb38
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 34 additions and 32 deletions

View File

@ -39,6 +39,7 @@ public class FireworkTranslator extends NbtItemStackTranslator {
CompoundTag fireworks = itemTag.get("Fireworks");
ListTag explosions = fireworks.get("Explosions");
if (explosions != null) {
for (Tag effect : explosions.getValue()) {
CompoundTag effectData = (CompoundTag) effect;
@ -84,6 +85,7 @@ public class FireworkTranslator extends NbtItemStackTranslator {
explosions.add(newEffectData);
}
}
}
@Override
public void translateToJava(CompoundTag itemTag, ItemEntry itemEntry) {