This commit is contained in:
Henri Bourcereau 2026-02-24 17:34:44 +01:00
parent 6414565c0e
commit ef91558b90
2 changed files with 6 additions and 3 deletions

View file

@ -102,7 +102,10 @@ impl MoveRules {
if let Ok((field_count, Some(field_color))) = self.board.get_field_checkers(move0_from)
{
if color != field_color || field_count < 2 {
println!("Move not physically possible 1");
println!(
"Move not physically possible 1. field_color {:?}, count {}",
field_color, field_count
);
info!("Move not physically possible");
return false;
}