Jelajahi Sumber

Update ST23_01.cs

x89rt2 4 bulan lalu
induk
melakukan
04ff0ed5d7
1 mengubah file dengan 2 tambahan dan 3 penghapusan
  1. 2 3
      Assets/Scripts/CardEffect/ST23/Green/ST23_01.cs

+ 2 - 3
Assets/Scripts/CardEffect/ST23/Green/ST23_01.cs

@@ -43,8 +43,7 @@ namespace DCGO.CardEffects.ST23
 
                 bool CanSelectPermanentCondition(Permanent permanent)
                 {
-                    return CardEffectCommons.IsPermanentExistsOnOwnerBattleArea(permanent, card)
-                        && permanent.IsTamer
+                    return CardEffectCommons.IsPermanentExistsOnOwnerBattleAreaTamer(permanent, card)
                         && permanent.HasFaceDownDigivolutionCards;
                 }
 
@@ -86,7 +85,7 @@ namespace DCGO.CardEffects.ST23
                             yield return null;
                         }
                     }
-                    else selectedPermanent = card.Owner.GetBattleAreaPermanents().FirstOrDefault();
+                    else selectedPermanent = card.Owner.GetBattleAreaPermanents().FirstOrDefault(CanSelectPermanentCondition);
 
                     List<CardSource> selectedCards = new List<CardSource>();