恢复卡槽可选

This commit is contained in:
xianyi
2025-08-20 16:16:27 +08:00
parent f0c1643f30
commit b215788256
5 changed files with 17 additions and 21 deletions

View File

@@ -187,10 +187,6 @@ namespace TcgEngine
if (target.HasStatus(StatusType.Protected) && !attacker.HasStatus(StatusType.Flying))
return false; //Protected by taunt
// 检查目标玩家场上是否有卡牌,如有则无法直接攻击玩家
if (target.cards_board.Count > 0)
return false; //Cannot attack player when they have cards on board
return true;
}