레벨 생성 완화 및 체크포인트 강화

This commit is contained in:
JiWoong Sul
2025-11-24 17:13:39 +09:00
parent 8c351c5c05
commit c8cbb7f8ac
3 changed files with 2491 additions and 61 deletions

View File

@@ -33,7 +33,9 @@ internal sealed class StatusReporter
{
if (_lastMessage == message && !newline) return;
var now = DateTime.UtcNow;
if (!newline && (now - _lastWriteTime).TotalMilliseconds < 200)
// 너무 자주 찍으면 콘솔이 쓸데없이 지저분해지므로,
// 진행 중 상태는 최소 1초 간격으로만 업데이트한다.
if (!newline && (now - _lastWriteTime).TotalMilliseconds < 1000)
{
return;
}