From 942c13ee26b180316f46921531c737fa8eb4197e Mon Sep 17 00:00:00 2001 From: tslil clingman <> Date: Sun, 9 Feb 2020 13:45:15 -0800 Subject: Silly error in CPS implementation --- src/main.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/main.rs') diff --git a/src/main.rs b/src/main.rs index f88fee5..50bfcf4 100644 --- a/src/main.rs +++ b/src/main.rs @@ -48,7 +48,7 @@ fn main() { &["-v", "--variant-start"], Store, "Select the rule variant for the start of play. Valid choices are CPSn, FCS, FES, TPS, and CZS. - The default starting type, which matches the original rules, is CPS2.", + The default starting type, which matches the original rules, is CPS1.", ) .metavar("VRNT"); @@ -89,7 +89,7 @@ fn main() { Ok(st) => start_type = st, } } else { - start_type = StartType::CPS(2); + start_type = StartType::CPS(1); } let call_proc; -- cgit v1.3.1