Skip to content

Commit

Permalink
Prepare for quick fire mode
Browse files Browse the repository at this point in the history
  • Loading branch information
nayakrujul committed Jun 28, 2024
1 parent f8af3b0 commit e2dcec0
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions scripts/folders-start.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,13 @@ function folders_start_game() {
let selected_terms = units.filter(
lst => selected_units.includes(lst[0][1])
).map(arr => arr[1]).flat();

if (game_mode === "match") {
folders_start_match(selected_terms);
} else if (game_mode === "classic") {

if (game_mode === "classic") {
folders_start_classic(selected_terms);
} else if (game_mode === "match") {
folders_start_match(selected_terms);
} else if (game_mode === "quick_fire") {
folders_start_quickfire(selected_terms);
}
}

Expand Down

0 comments on commit e2dcec0

Please sign in to comment.