Minor fix to Utility AI code

This commit is contained in:
Stephen Seo 2022-03-07 17:06:45 +09:00
parent ec9aac8400
commit 14d224734f
1 changed files with 1 additions and 1 deletions

View File

@ -34,7 +34,7 @@ impl From<SlotChoice> for usize {
SlotChoice::Slot4 => 4,
SlotChoice::Slot5 => 5,
SlotChoice::Slot6 => 6,
SlotChoice::Invalid => 10,
SlotChoice::Invalid => (ROWS * COLS) as usize,
}
}
}