This commit is contained in:
DanLT
2021-09-01 13:07:49 -08:00
parent aaffeb9fac
commit 7a188af002
4 changed files with 11 additions and 2 deletions

View File

@@ -48,7 +48,7 @@ public class BoardManager {
this.plugin = plugin;
this.boardSettings = boardSettings;
this.scoreboards = new ConcurrentHashMap<>();
this.updateTask = new BoardUpdateTask(this).runTaskTimer(plugin, 2L, 2L);
this.updateTask = new BoardUpdateTask(this).runTaskTimer(plugin, 2L, 20L);
plugin.getServer().getOnlinePlayers().forEach(this::setup);
}