This commit is contained in:
Marco 2020-04-18 10:29:13 +02:00
parent 672024c718
commit 1c0ea9c60c
1 changed files with 3 additions and 1 deletions

View File

@ -49,7 +49,9 @@ public class ShulkerEntity extends GolemEntity {
}
if (entityMetadata.getId() == 16) {
Position position = (Position) entityMetadata.getValue();
metadata.put(EntityData.SHULKER_ATTACH_POS, Vector3i.from(position.getX(), position.getY(), position.getZ()));
if(position != null){
metadata.put(EntityData.SHULKER_ATTACH_POS, Vector3i.from(position.getX(), position.getY(), position.getZ()));
}
}
//TODO Outdated metadata flag SHULKER_PEAK_HEIGHT
// if (entityMetadata.getId() == 17) {