From 80db0a872d877a4abd0071179ea6ed3acd19bfc0 Mon Sep 17 00:00:00 2001 From: Simon Gardling Date: Wed, 9 Apr 2025 21:30:54 -0400 Subject: [PATCH] add note --- src/logic/future_moves.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/logic/future_moves.rs b/src/logic/future_moves.rs index e01519b..1590ede 100644 --- a/src/logic/future_moves.rs +++ b/src/logic/future_moves.rs @@ -519,7 +519,7 @@ impl FutureMoves { return; } - // only prune moves of the agent + // only prune moves of the agent (children of opposite color) if indexes.first().map(|&i| self.arena[i].color) != Some(self.agent_color) { continue; }