Skip to content

Commit

Permalink
fix Russian solitaire
Browse files Browse the repository at this point in the history
  • Loading branch information
VladimirMarkelov committed Jan 11, 2021
1 parent e11957b commit 2e39a17
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "solkit"
version = "1.0.0"
version = "1.0.1"
authors = ["Vladimir Markelov <[email protected]>"]
edition = "2018"
license = "Apache-2.0 OR MIT"
Expand Down
2 changes: 1 addition & 1 deletion src/bin/solkit/rules.rs
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ fn builtin_rules() -> Result<HashMap<String, Conf>, SolError> {
ColConf { count: 11, up: 5, take_only: false },
],
col_forder: FaceOrder::Desc,
col_sorder: SuitOrder::AlternateColor,
col_sorder: SuitOrder::SameSuit,
col_refill: Face::K,
};
rules.insert(conf.name.clone(), conf);
Expand Down

0 comments on commit 2e39a17

Please sign in to comment.