From 8f8deb2f1cd0ede339d6f3aa0c9d50cf42e35722 Mon Sep 17 00:00:00 2001 From: Alberto Xamin Date: Fri, 25 Jun 2021 17:21:31 +0200 Subject: [PATCH] fix cinturone --- 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 8af6039..c7c0b5e 100644 --- a/frontend/src/components/Player.vue +++ b/frontend/src/components/Player.vue @@ -302,7 +302,7 @@ export default { }, methods: { maxHandLength() { - return (this.character.name === "Sean Mallory" && !(this.eventCard && this.eventCard.name == "Sbornia")?10:(this.equipment.filter(x => x.name == 'Cinturone').length>0?8:this.lives)) + return (this.character.name === "Sean Mallory" && !(this.eventCard && this.eventCard.name == "Sbornia")?10:(this.gold_rush_equipment.filter(x => x.name == 'Cinturone').length>0?8:this.lives)) }, setCharacter(char) { this.availableCharacters = []