Skip to content

Commit

Permalink
Fix up modified timing for testing
Browse files Browse the repository at this point in the history
Signed-off-by: Pablo Herrera <[email protected]>
  • Loading branch information
Pablete1234 committed Aug 16, 2024
1 parent e587499 commit a669fd0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/src/main/java/tc/oc/pgm/listeners/MatchAnnouncer.java
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ public void onMatchLoad(final MatchLoadEvent event) {
final Match match = event.getMatch();
match
.getExecutor(MatchScope.LOADED)
.scheduleWithFixedDelay(() -> sendCurrentlyPlaying(match), 0, 1, TimeUnit.MINUTES);
.scheduleWithFixedDelay(() -> sendCurrentlyPlaying(match), 0, 5, TimeUnit.MINUTES);
}

@EventHandler(priority = EventPriority.MONITOR)
Expand Down

0 comments on commit a669fd0

Please sign in to comment.