Browse Source

Update EX12_033.cs

x89rt2 1 month ago
parent
commit
6b55f1748e
1 changed files with 2 additions and 2 deletions
  1. 2 2
      Assets/Scripts/CardEffect/EX12/Blue/EX12_033.cs

+ 2 - 2
Assets/Scripts/CardEffect/EX12/Blue/EX12_033.cs

@@ -228,14 +228,14 @@ namespace DCGO.CardEffects.EX12
 
                 bool CanSelectPermanentCondition1(Permanent permanent)
                 {
-                    return CardEffectCommons.IsPermanentExistsOnOwnerBattleArea(permanent, card)
+                    return CardEffectCommons.IsPermanentExistsOnOpponentBattleArea(permanent, card)
                         && (permanent.IsDigimon
                             || permanent.IsTamer);
                 }
 
                 bool CanSelectPermanentCondition2(Permanent permanent)
                 {
-                    return CardEffectCommons.IsPermanentExistsOnOwnerBattleArea(permanent, card)
+                    return CardEffectCommons.IsPermanentExistsOnOpponentBattleArea(permanent, card)
                         && (permanent.IsDigimon
                             || permanent.IsTamer)
                         && permanent.DigivolutionCards.Count == 0;