Fixed NPE when hologram interaction is disabled

This commit is contained in:
Eric 2017-06-15 13:31:35 +02:00
parent d135a7ae92
commit 36ea51b593
1 changed files with 6 additions and 2 deletions

View File

@ -155,7 +155,9 @@ public class Hologram {
wrapper.setVisible(p, true);
}
interactArmorStandWrapper.setVisible(p, true);
if (interactArmorStandWrapper != null) {
interactArmorStandWrapper.setVisible(p, true);
}
}
}.runTaskAsynchronously(plugin);
@ -173,7 +175,9 @@ public class Hologram {
wrapper.setVisible(p, false);
}
interactArmorStandWrapper.setVisible(p, false);
if (interactArmorStandWrapper != null) {
interactArmorStandWrapper.setVisible(p, false);
}
}
}.runTaskAsynchronously(plugin);