We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 22ae84e commit a8341f2Copy full SHA for a8341f2
src/games/morphos.ts
@@ -825,7 +825,7 @@ export class MorphosGame extends GameBase {
825
} else {
826
pieces.push("-");
827
const occ = g.neighbours(cell).filter(c => this.board.has(c));
828
- if (occ.length > 2) {
+ if (occ.length >= 2) {
829
const cloned = this.clone();
830
for (const p of [1,2] as const) {
831
cloned.board.set(cell, p);
0 commit comments