These are auto removed.

This commit is contained in:
Brianna 2020-04-27 10:02:13 -04:00
parent 5e20019459
commit 2d50efaac4

View File

@ -59,7 +59,6 @@ public class HologramTask extends BukkitRunnable {
}
public void onDisable() {
removeHolograms();
}
public void spawnHologram(HologramType type, Location location, List<String> lines) {
@ -151,12 +150,6 @@ public class HologramTask extends BukkitRunnable {
return hologramLines;
}
public void removeHolograms() {
for (Hologram hologramList : hologramStorage) {
hologramList.remove();
}
}
public Hologram getHologram(HologramType type) {
for (Hologram hologramList : hologramStorage) {
if (hologramList.getType() == type) {