Skip to content

Commit

Permalink
Fix another violation
Browse files Browse the repository at this point in the history
  • Loading branch information
Euphillya committed Mar 5, 2024
1 parent 36d510b commit 3c1cc57
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ public void reload() {
@Override
public int schedule(long delay, long period, Runnable task) {
return WorldEditPlugin.getEnergieTask().getScheduler(Energie.SchedulerSoft.MINECRAFT)
.scheduleSyncRepeating(SchedulerType.SYNC,schedulerTaskInter -> {
.scheduleSyncRepeating(SchedulerType.SYNC, schedulerTaskInter -> {
task.run();
}, delay, period);
}
Expand Down

0 comments on commit 3c1cc57

Please sign in to comment.