fix skip count

This commit is contained in:
2026-05-16 10:30:47 -07:00
parent 1cf1db4512
commit 0e522f7154
+1 -3
View File
@@ -154,7 +154,6 @@ pub enum SkipCards {
Ten,
Eleven,
Twelve,
Thirteen,
}
impl SkipCards {
const fn next(self) -> Option<Self> {
@@ -172,8 +171,7 @@ impl SkipCards {
Nine => Ten,
Ten => Eleven,
Eleven => Twelve,
Twelve => Thirteen,
Thirteen => return None,
Twelve => return None,
})
}
}