Skip to content

Commit 22ae84e

Browse files
committed
Morphos: Fix reversed territory markers
1 parent c717349 commit 22ae84e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/games/morphos.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -831,9 +831,9 @@ export class MorphosGame extends GameBase {
831831
cloned.board.set(cell, p);
832832
if (cloned.isWeak(cell)) {
833833
if (p === 1) {
834-
dots1.push({row, col});
835-
} else {
836834
dots2.push({row, col});
835+
} else {
836+
dots1.push({row, col});
837837
}
838838
break;
839839
}

0 commit comments

Comments
 (0)