mirror of
https://github.com/Zrips/Jobs.git
synced 2025-01-02 14:29:07 +01:00
Fixing bossbar solid segmentation
This commit is contained in:
parent
b9733e801d
commit
c7c27a7129
@ -100,6 +100,9 @@ public class BossBarManager {
|
||||
}
|
||||
BarStyle style;
|
||||
switch (Jobs.getGCManager().SegmentCount) {
|
||||
case 1:
|
||||
style = BarStyle.SOLID;
|
||||
break;
|
||||
case 6:
|
||||
style = BarStyle.SEGMENTED_6;
|
||||
break;
|
||||
@ -113,7 +116,7 @@ public class BossBarManager {
|
||||
style = BarStyle.SEGMENTED_20;
|
||||
break;
|
||||
default:
|
||||
style = BarStyle.SEGMENTED_6;
|
||||
style = BarStyle.SOLID;
|
||||
break;
|
||||
}
|
||||
bar = Bukkit.createBossBar(message, color, style);
|
||||
|
Loading…
Reference in New Issue
Block a user