summaryrefslogtreecommitdiff
path: root/src/main.rs
diff options
context:
space:
mode:
authortslil clingman <>2020-02-09 13:45:15 -0800
committertslil clingman <>2020-02-09 13:45:15 -0800
commit942c13ee26b180316f46921531c737fa8eb4197e (patch)
tree84f5ee55f7d923f1a213776c6015f69b1fa9c90e /src/main.rs
parent84898338d0875c258a4325d517dd7b7f9d0f83e1 (diff)
Silly error in CPS implementation
Diffstat (limited to 'src/main.rs')
-rw-r--r--src/main.rs4
1 files changed, 2 insertions, 2 deletions
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;