chore: Late something

This commit is contained in:
2026-02-22 21:46:12 +01:00
parent dac6d666b2
commit e15d4ec874

View File

@@ -24,6 +24,11 @@ public class GameWinHandler extends AbstractSocketEventHandler<GameWin> {
roomTaskScheduler.finalShutdown();
WinScene winScene = new WinScene();
gameState.setScreen(winScene);
try {
Thread.sleep(500);
} catch (InterruptedException e) {
throw new RuntimeException(e);
}
winScene.fullRender();
}
}