Skip to content

Commit

Permalink
update wolges to a305a461c1326e07818c2e027c31c9a735efde44
Browse files Browse the repository at this point in the history
  • Loading branch information
andy-k committed Apr 20, 2024
1 parent da67c7f commit 362fb27
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions src/game_config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -438,6 +438,8 @@ pub fn make_jumbled_norwegian_game_config() -> GameConfig {
})
}

// http://www.pfs.org.pl/regulaminy.php
// select the second tab.
#[allow(dead_code)]
pub fn make_polish_game_config() -> GameConfig {
GameConfig::Static(StaticGameConfig {
Expand All @@ -446,7 +448,7 @@ pub fn make_polish_game_config() -> GameConfig {
board_layout: board_layout::make_standard_board_layout(),
rack_size: 7,
num_players: 2,
num_passes_to_end: 0,
num_passes_to_end: 4,
challenges_are_passes: false,
num_zeros_to_end: 6,
zeros_can_end_empty_board: true,
Expand All @@ -464,7 +466,7 @@ pub fn make_jumbled_polish_game_config() -> GameConfig {
board_layout: board_layout::make_standard_board_layout(),
rack_size: 7,
num_players: 2,
num_passes_to_end: 0,
num_passes_to_end: 4,
challenges_are_passes: false,
num_zeros_to_end: 6,
zeros_can_end_empty_board: true,
Expand Down Expand Up @@ -510,6 +512,7 @@ pub fn make_jumbled_slovene_game_config() -> GameConfig {
})
}

// https://fisescrabble.org/reglamentos/modalidad-clasica/
#[allow(dead_code)]
pub fn make_spanish_game_config() -> GameConfig {
GameConfig::Static(StaticGameConfig {
Expand Down

0 comments on commit 362fb27

Please sign in to comment.