Commit 79babcc5 authored by Bwly999's avatar Bwly999
Browse files

roll back to timer

parent 6149c6f0
......@@ -205,7 +205,7 @@ public final class GameServer extends KcpServer {
@Override
public synchronized void start() {
// Schedule game loop.
ScheduledExecutorService gameLoop = Executors.newScheduledThreadPool(2);
Timer gameLoop = new Timer();
gameLoop.scheduleAtFixedRate(new TimerTask() {
@Override
public void run() {
......@@ -215,7 +215,8 @@ public final class GameServer extends KcpServer {
Grasscutter.getLogger().error(Grasscutter.getLanguage().An_error_occurred_during_game_update, e);
}
}
}, 0L, 1000L, TimeUnit.MILLISECONDS);
}, new Date(), 1000L);
super.start();
}
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment