Fix boss bar not being removed
This commit is contained in:
parent
54efb582b1
commit
1a256855e2
@ -272,13 +272,24 @@ public abstract class Disguise {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private void removeBossBar() {
|
||||||
|
BossBar bossBar = Bukkit.getBossBar(getBossBar());
|
||||||
|
|
||||||
|
if (bossBar == null) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
bossBar.removeAll();
|
||||||
|
Bukkit.removeBossBar(getBossBar());
|
||||||
|
}
|
||||||
|
|
||||||
public void setNotifyBar(DisguiseConfig.NotifyBar bar) {
|
public void setNotifyBar(DisguiseConfig.NotifyBar bar) {
|
||||||
if (getNotifyBar() == bar) {
|
if (getNotifyBar() == bar) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (getNotifyBar() == DisguiseConfig.NotifyBar.BOSS_BAR) {
|
if (getNotifyBar() == DisguiseConfig.NotifyBar.BOSS_BAR) {
|
||||||
Bukkit.removeBossBar(getBossBar());
|
removeBossBar();
|
||||||
}
|
}
|
||||||
|
|
||||||
this.notifyBar = bar;
|
this.notifyBar = bar;
|
||||||
@ -323,7 +334,7 @@ public abstract class Disguise {
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
Bukkit.removeBossBar(getBossBar());
|
removeBossBar();
|
||||||
|
|
||||||
BossBar bar = Bukkit
|
BossBar bar = Bukkit
|
||||||
.createBossBar(getBossBar(), LibsMsg.ACTION_BAR_MESSAGE.get(getDisguiseName()), getBossBarColor(),
|
.createBossBar(getBossBar(), LibsMsg.ACTION_BAR_MESSAGE.get(getDisguiseName()), getBossBarColor(),
|
||||||
@ -973,12 +984,7 @@ public abstract class Disguise {
|
|||||||
new FixedMetadataValue(LibsDisguises.getInstance(), System.currentTimeMillis()));
|
new FixedMetadataValue(LibsDisguises.getInstance(), System.currentTimeMillis()));
|
||||||
|
|
||||||
if (NmsVersion.v1_13.isSupported()) {
|
if (NmsVersion.v1_13.isSupported()) {
|
||||||
BossBar bar = Bukkit.getBossBar(getBossBar());
|
removeBossBar();
|
||||||
|
|
||||||
if (bar != null) {
|
|
||||||
bar.removeAll();
|
|
||||||
Bukkit.removeBossBar(getBossBar());
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
|
Loading…
Reference in New Issue
Block a user