Skip to content

Commit

Permalink
Trying to fix issue #6
Browse files Browse the repository at this point in the history
  • Loading branch information
Xitee committed Aug 7, 2022
1 parent 1481a48 commit dc9ce5c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/de/xite/scoreboard/main/Config.java
Original file line number Diff line number Diff line change
Expand Up @@ -428,10 +428,10 @@ public void run() {
// Ranks
if(pl.getConfig().getBoolean("tablist.ranks") || PowerBoard.pl.getConfig().getBoolean("chat.ranks")) {
sendConfigReloadMessage(s, ChatColor.GRAY+"Reloading "+ChatColor.YELLOW+"ranks"+ChatColor.GRAY+"...");
for(Player all : Bukkit.getOnlinePlayers()) {
for(Player all : Bukkit.getOnlinePlayers())
Teams.removePlayer(all);
for(Player all : Bukkit.getOnlinePlayers())
RankManager.register(all);
}
}

if(PowerBoard.pl.getConfig().getBoolean("tablist.text")) {
Expand Down

0 comments on commit dc9ce5c

Please sign in to comment.