修复【息兵】ai

This commit is contained in:
157 2024-05-07 10:49:17 +08:00
parent 3d511c415b
commit 950bcb4672
1 changed files with 1 additions and 1 deletions

View File

@ -12437,7 +12437,7 @@ const skills = {
var target = event.player;
var att = get.attitude(player, target);
var num2 = Math.min(5, target.hp) - target.countCards("h");
if (num2 <= 0) return att <= 0;
if (num2 <= 0) return false;
var num = target.countCards("h", function (card) {
return target.hasValueTarget(card, null, true);
});