Skip to content

Commit 85170d1

Browse files
committed
Entropy: Fix double annotation for observers
1 parent 9bb6d61 commit 85170d1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/games/entropy.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -653,7 +653,7 @@ export class EntropyGame extends GameBaseSimultaneous {
653653
rep.annotations.push({type: "dots", targets: [{col: x, row}]});
654654
}
655655
// check for pending annotations
656-
if (this.results.length > 0) {
656+
if (this.results.length > 0 && perspective !== undefined) {
657657
for (const move of this.results) {
658658
if (move.type !== "pass") {
659659
if (move.type === "move") {

0 commit comments

Comments
 (0)