Another fix

This commit is contained in:
nora 2022-12-05 09:44:34 +01:00
parent 53bd5cdfde
commit 6172250ff5
No known key found for this signature in database

View file

@ -166,6 +166,7 @@ impl Game for Connect4 {
if self[pos].is_some() { if self[pos].is_some() {
self[pos] = None; self[pos] = None;
return;
} }
} }
} }