diff --git a/src/main.rs b/src/main.rs index 824fad1..35c4506 100644 --- a/src/main.rs +++ b/src/main.rs @@ -139,7 +139,8 @@ fn main() { if score_1 > score_2 { t1_pts += 3; } else if score_1 < score_2 { - t2_pts += 3; } else { + t2_pts += 3; + } else { t1_pts += 1; t2_pts += 1; } @@ -154,6 +155,7 @@ fn main() { }} } + // the remaining matches. let diff = get_remaining_matches(combinition, ¤t_combinitions);