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

View File

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