Skip to content

Commit f8bfbc3

Browse files
committed
Minefield: Board size changes
1 parent 6f0e788 commit f8bfbc3

2 files changed

Lines changed: 10 additions & 2 deletions

File tree

locales/en/apgames.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1698,6 +1698,12 @@
16981698
"size-15": {
16991699
"name": "15x15 board"
17001700
},
1701+
"size-17": {
1702+
"name": "17x17 board"
1703+
},
1704+
"size-19": {
1705+
"name": "19x19 board"
1706+
},
17011707
"cartwheel": {
17021708
"name": "Cartwheel",
17031709
"description": "Allows 2x4 switches but forbids rare 4x4 pinwheels and cartwheels (by Luis Bolaños Mures)"

src/games/minefield.ts

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,11 +57,13 @@ export class MinefieldGame extends GameBase {
5757
},
5858
],
5959
variants: [
60-
{ uid: "size-8", group: "board" },
60+
{ uid: "size-8", group: "board", experimental: true },
6161
{ uid: "size-9", group: "board" },
6262
{ uid: "#board", },
63-
{ uid: "size-13", group: "board" },
63+
{ uid: "size-13", group: "board", default: true },
6464
{ uid: "size-15", group: "board" },
65+
{ uid: "size-17", group: "board" },
66+
{ uid: "size-19", group: "board" },
6567
{ uid: "pinwheel" },
6668
// marked as experimental so it still shows up
6769
// in the variant list but not in the new challenge dialog

0 commit comments

Comments
 (0)