Format code

This commit is contained in:
2026-05-17 10:12:22 +02:00
parent 5125453406
commit eceb58b28c
25 changed files with 113 additions and 56 deletions
@@ -43,8 +43,9 @@ public class Realtime extends JavaPlugin implements Listener {
Date date = new Date();
long time = date.getHours() * 1000 + (long) (date.getMinutes() * 16.66666666666667) + (long) (date.getSeconds() * 0.1666666666666667) - 6000;
for (World world : Bukkit.getWorlds())
for (World world : Bukkit.getWorlds()) {
world.setTime(time);
}
}, 0, 600);
}
}