Skip to content

Commit

Permalink
update animate_progress on reload
Browse files Browse the repository at this point in the history
  • Loading branch information
IamMusavaRibica committed Jul 8, 2024
1 parent fa00198 commit 90a2e63
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ public class BossBarManager implements Listener {
private NumberFormat moneyFormat;
private final AuraSkills plugin;
private final TextFormatter tf = new TextFormatter();
private final boolean ANIMATE_PROGRESS;
private boolean ANIMATE_PROGRESS;

public BossBarManager(AuraSkills plugin) {
this.bossBars = new HashMap<>();
Expand Down Expand Up @@ -91,6 +91,7 @@ public void loadOptions() {
stayTime = plugin.configInt(Option.BOSS_BAR_STAY_TIME);
colors = new HashMap<>();
overlays = new HashMap<>();
ANIMATE_PROGRESS = plugin.configBoolean(Option.BOSS_BAR_ANIMATE_PROGRESS);
for (String entry : plugin.configStringList(Option.BOSS_BAR_FORMAT)) {
String[] splitEntry = entry.split(" ");
Skill skill;
Expand Down

0 comments on commit 90a2e63

Please sign in to comment.