mirror of
https://github.com/amalthea-mc/ShopChest.git
synced 2024-11-09 20:21:07 +00:00
Fixed NPE when hologram interaction is disabled
This commit is contained in:
parent
d135a7ae92
commit
36ea51b593
@ -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);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user