From 9659e3574a2e2e4cbefc091a765b87de54bbf82b Mon Sep 17 00:00:00 2001 From: Alberto Xamin Date: Sun, 27 Dec 2020 18:02:48 +0100 Subject: [PATCH] fix tequila --- frontend/src/components/Player.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/components/Player.vue b/frontend/src/components/Player.vue index 3ddced0..7a319e3 100644 --- a/frontend/src/components/Player.vue +++ b/frontend/src/components/Player.vue @@ -358,7 +358,7 @@ export default { let card_data = { index: res, against: against, - with: this.hand.indexOf(this.card_with) > -1 ? this.hand.indexOf(this.card_with):null, + with: this.handComputed.indexOf(this.card_with) > -1 ? this.handComputed.indexOf(this.card_with):null, } this.card_with = null console.log(card_data)