From d48bada8ded3a8eb02b0f40577b85fdf068ebd40 Mon Sep 17 00:00:00 2001 From: egamerainy <1336237126@qq.com> Date: Mon, 29 Sep 2025 20:24:54 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E8=83=BD=E7=82=B9=E5=87=BB?= =?UTF-8?q?=E8=B7=B3=E8=BF=87=E7=9A=84=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- project/plugins.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/project/plugins.js b/project/plugins.js index 03b8734..242cc76 100644 --- a/project/plugins.js +++ b/project/plugins.js @@ -20400,7 +20400,6 @@ var plugins_bb40132b_638b_4a9f_b028_d3fe47acc8d1 = if (this.isReplay) { playerAction.card.forEach(v => { this.costdown(this.cards[v]) - this.usecard = true this.cards.splice(v, 1) }) } @@ -20475,6 +20474,7 @@ var plugins_bb40132b_638b_4a9f_b028_d3fe47acc8d1 = if (px < cardweight || px > 676 - cardweight) return const index = Math.floor((px - cardweight) / 102) if (!this.costdown(this.cards[index])) return + this.usecard = true card.push(index) this.cards.splice(index, 1) } else { @@ -20482,6 +20482,7 @@ var plugins_bb40132b_638b_4a9f_b028_d3fe47acc8d1 = if (px >= 574) index = this.cards.length - 1 else index = Math.floor(px / (574 / (this.cards.length - 1))) if (!this.costdown(this.cards[index])) return + this.usecard = true card.push(index) this.cards.splice(index, 1) } @@ -20499,6 +20500,7 @@ var plugins_bb40132b_638b_4a9f_b028_d3fe47acc8d1 = if (py >= 345.66 & py < 510.83) { const index = 4 + Math.floor(px / 104) if (!this.costdown(this.cards[index])) return + this.usecard = true card.push(index) this.cards.splice(index, 1) this.update() @@ -20506,6 +20508,7 @@ var plugins_bb40132b_638b_4a9f_b028_d3fe47acc8d1 = } else if (py >= 510.83) { const index = Math.floor(px / 104) if (!this.costdown(this.cards[index])) return + this.usecard = true card.push(index) this.cards.splice(index, 1) this.update()