From 08d5f2ebb55e8631912c9d7d997eac4cb258464f Mon Sep 17 00:00:00 2001 From: davotoula Date: Mon, 23 Mar 2026 17:01:19 +0100 Subject: [PATCH] fix(chess): resolve TimeUtils compilation error in ChessLobbyState Co-Authored-By: Claude Opus 4.6 --- .../vitorpamplona/amethyst/commons/chess/ChessLobbyState.kt | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/commons/src/commonMain/kotlin/com/vitorpamplona/amethyst/commons/chess/ChessLobbyState.kt b/commons/src/commonMain/kotlin/com/vitorpamplona/amethyst/commons/chess/ChessLobbyState.kt index d33577f7a..894673718 100644 --- a/commons/src/commonMain/kotlin/com/vitorpamplona/amethyst/commons/chess/ChessLobbyState.kt +++ b/commons/src/commonMain/kotlin/com/vitorpamplona/amethyst/commons/chess/ChessLobbyState.kt @@ -480,7 +480,9 @@ class ChessLobbyState( result = result, termination = termination, moveCount = liveState.moveHistory.value.size, - completedAt = TimeUtils.now(), + completedAt = + com.vitorpamplona.quartz.utils.TimeUtils + .now(), ) _completedGames.update { current ->