Skip to content

Commit 673c22b

Browse files
committed
LoA: Change order of variants so board is first, as it typically is
1 parent e6352f0 commit 673c22b

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

locales/en/apgames.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1352,10 +1352,10 @@
13521352
"loa": {
13531353
"#board": {
13541354
"description": "9x9 \"black hole\" variant. Moving a piece onto the central hole removes the piece from the game.",
1355-
"name": "Larger board (9x9)"
1355+
"name": "9x9 board"
13561356
},
13571357
"classic": {
1358-
"name": "Classic 8x8 board"
1358+
"name": "8x8 board"
13591359
},
13601360
"scrambled": {
13611361
"description": "Pieces are interspersed with each other instead of starting together on opposite sides of the board.",

src/games/loa.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -46,16 +46,16 @@ export class LinesOfActionGame extends GameBase {
4646
},
4747
],
4848
variants: [
49-
{
50-
uid: "scrambled",
51-
group: "setup"
52-
},
5349
{
5450
uid: "classic",
5551
group: "board",
5652
default: true,
5753
},
58-
{ uid: "#board" }
54+
{ uid: "#board" },
55+
{
56+
uid: "scrambled",
57+
group: "setup"
58+
},
5959
],
6060
categories: ["goal>unify", "mechanic>capture", "mechanic>move", "board>shape>rect", "board>connect>rect", "components>simple>1per"],
6161
flags: ["check", "limited-pieces", "automove"]

0 commit comments

Comments
 (0)