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, Ten,
Eleven, Eleven,
Twelve, Twelve,
Thirteen,
} }
impl SkipCards { impl SkipCards {
const fn next(self) -> Option<Self> { const fn next(self) -> Option<Self> {
@@ -172,8 +171,7 @@ impl SkipCards {
Nine => Ten, Nine => Ten,
Ten => Eleven, Ten => Eleven,
Eleven => Twelve, Eleven => Twelve,
Twelve => Thirteen, Twelve => return None,
Thirteen => return None,
}) })
} }
} }