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, } }