UPD: Remove thinking... spam

This commit is contained in:
sebastian 2026-08-05 07:19:09 +02:00
parent ecc3f595bc
commit a278ce14c5

View File

@ -18,7 +18,6 @@ void ludo::LudoAiController::update(float deltaTime) {
} }
m_thinkTimer += deltaTime; m_thinkTimer += deltaTime;
std::cout << "Thinking..." << std::endl;
if (m_thinkTimer < kThinkDelay) return; if (m_thinkTimer < kThinkDelay) return;
std::cout << "Thinking done" << std::endl; std::cout << "Thinking done" << std::endl;
@ -34,8 +33,6 @@ void ludo::LudoAiController::update(float deltaTime) {
} }
break; break;
} }
} }
std::optional<int> ludo::LudoAiController::chooseMove() const { std::optional<int> ludo::LudoAiController::chooseMove() const {