修复【弓骑】

This commit is contained in:
157 2024-04-19 23:08:05 +08:00
parent e65ab1f694
commit e7d94af9b4
1 changed files with 1 additions and 1 deletions

View File

@ -8241,7 +8241,7 @@ game.import("character", function () {
cardUsable: function (card, player) {
if (card.name == "sha") {
const suit = get.suit(card);
return suit === "unsure" || player.storage.xingongji2.includes(suit);
if (suit === "unsure" || player.storage.xingongji2.includes(suit)) return Infinity;
}
},
aiOrder: function (player, card, num) {