diff --git a/src/modes/single.rs b/src/modes/single.rs index 2e8603b..0bd55f8 100644 --- a/src/modes/single.rs +++ b/src/modes/single.rs @@ -30,7 +30,7 @@ impl Hand for Single { // Trivial implementation if self_abs == other_abs { Footstool::Full - } else if self_abs == other_abs + 1 { + } else if self_abs == (other_abs + 1) % 52 { Footstool::Half } else { Footstool::None