浏览代码

Update BT25_082.cs

x89rt2 5 月之前
父节点
当前提交
a319ead12d
共有 1 个文件被更改,包括 3 次插入3 次删除
  1. 3 3
      Assets/Scripts/CardEffect/BT25/Purple/BT25_082.cs

+ 3 - 3
Assets/Scripts/CardEffect/BT25/Purple/BT25_082.cs

@@ -115,13 +115,13 @@ namespace DCGO.CardEffects.BT25
             {
                 bool Condition()
                 {
-                    return CardEffectCommons.HasMatchConditionOwnersPermanent(card, TraitedTamerPermanent);
+                    return CardEffectCommons.IsPermanentExistsOnOwnerBattleArea(permanent, card)
+                        && CardEffectCommons.HasMatchConditionOwnersPermanent(card, TraitedTamerPermanent);
                 }
 
                 bool TraitedTamerPermanent(Permanent permanent)
                 {
-                    return CardEffectCommons.IsExistOnBattleArea(card)
-                        && permanent.IsTamer
+                    return permanent.IsTamer
                         && permanent.TopCard.HasText("Three Musketeers");
                 }