From a278ce14c5e3164612c7f55b092419a83b2973fd Mon Sep 17 00:00:00 2001 From: sebastian Date: Wed, 5 Aug 2026 07:19:09 +0200 Subject: [PATCH] UPD: Remove thinking... spam --- game/src/ludo/LudoAiController.cpp | 3 --- 1 file changed, 3 deletions(-) diff --git a/game/src/ludo/LudoAiController.cpp b/game/src/ludo/LudoAiController.cpp index 88ae9c9..0b0f0de 100644 --- a/game/src/ludo/LudoAiController.cpp +++ b/game/src/ludo/LudoAiController.cpp @@ -18,7 +18,6 @@ void ludo::LudoAiController::update(float deltaTime) { } m_thinkTimer += deltaTime; - std::cout << "Thinking..." << std::endl; if (m_thinkTimer < kThinkDelay) return; std::cout << "Thinking done" << std::endl; @@ -34,8 +33,6 @@ void ludo::LudoAiController::update(float deltaTime) { } break; } - - } std::optional ludo::LudoAiController::chooseMove() const {