Skip to content

Commit a8341f2

Browse files
committed
Morphos: Fix typo
1 parent 22ae84e commit a8341f2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/games/morphos.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -825,7 +825,7 @@ export class MorphosGame extends GameBase {
825825
} else {
826826
pieces.push("-");
827827
const occ = g.neighbours(cell).filter(c => this.board.has(c));
828-
if (occ.length > 2) {
828+
if (occ.length >= 2) {
829829
const cloned = this.clone();
830830
for (const p of [1,2] as const) {
831831
cloned.board.set(cell, p);

0 commit comments

Comments
 (0)