x89rt2 3 месяцев назад
Родитель
Сommit
c4aacc0af6

+ 2 - 2
Assets/Scripts/Script/CardEffectFactory/KeyWordEffects/ArtsDigivolve.cs

@@ -18,8 +18,8 @@ public partial class CardEffectFactory
 
         bool CanSelectPermanentCondition(Permanent permanent)
         {
-            return permanent.IsDigimon
-                && CardEffectCommons.IsOwnerPermanent(permanent, card)
+            return CardEffectCommons.IsOwnerPermanent(permanent, card)
+                && permanent.IsDigimon
                 && card.CanPlayCardTargetFrame(permanent.PermanentFrame, false, artsDigivolutionClass, SelectCardEffect.Root.Execution);
         }