From b02ce8d185b57cdcd6cf948213aed5b5efca4557 Mon Sep 17 00:00:00 2001 From: Henri Bourcereau Date: Thu, 7 Aug 2025 21:01:40 +0200 Subject: [PATCH] fix dqn strategy color --- bot/src/strategy/dqn.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bot/src/strategy/dqn.rs b/bot/src/strategy/dqn.rs index af08341..0248cc5 100644 --- a/bot/src/strategy/dqn.rs +++ b/bot/src/strategy/dqn.rs @@ -19,8 +19,8 @@ impl Default for DqnStrategy { fn default() -> Self { Self { game: GameState::default(), - player_id: 2, - color: Color::Black, + player_id: 1, + color: Color::White, model: None, } }