From d916da41aa1d847b888fa597bfa9018d6192bdb7 Mon Sep 17 00:00:00 2001 From: Steffen Date: Fri, 5 Jun 2020 22:46:54 +0200 Subject: [PATCH] fix another voting bug --- src/components/TownSquare.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/TownSquare.vue b/src/components/TownSquare.vue index 7af8aeb..470c70e 100644 --- a/src/components/TownSquare.vue +++ b/src/components/TownSquare.vue @@ -135,7 +135,7 @@ export default { } }, nominatePlayer(from, to) { - if (to === undefined && from !== this.nominate) { + if (to === undefined) { this.cancel(); if (from !== this.nominate) { this.nominate = from;