diff --git a/package-lock.json b/package-lock.json index 7969b61..06ce89b 100644 Binary files a/package-lock.json and b/package-lock.json differ diff --git a/package.json b/package.json index ea18943..1124f3d 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "minesweeper", - "version": "0.86.4", + "version": "0.86.5", "description": "Just Minesweeper!", "author": "Florine W. Dekker", "browser": "dist/bundle.js", diff --git a/src/main/js/Game.ts b/src/main/js/Game.ts index 741a891..062ae3f 100644 --- a/src/main/js/Game.ts +++ b/src/main/js/Game.ts @@ -384,7 +384,7 @@ export class Game { case 2: if (!this.rightDown) break; - if (!this.bothHeld && !this.leftDown) + if (this.bothHeld && !this.leftDown) this.field.chord(coords); this.rightDown = false;