Explorar el Código

Merge pull request #1410 from DCGO2/hooperk-arts-digivolve

Arts Digivolve should not be by effect
x89rt2 hace 3 meses
padre
commit
8b28df9a8b

+ 8 - 11
Assets/Scripts/Script/CardEffectFactory/KeyWordEffects/ArtsDigivolve.cs

@@ -49,17 +49,14 @@ public partial class CardEffectFactory
 
             IEnumerator SelectPermanentCoroutine(Permanent permanent)
             {
-                yield return ContinuousController.instance.StartCoroutine(CardEffectCommons.DigivolveIntoExcecutingAreaCard(
-                    permanent,
-                    null,
-                    false,
-                    null,
-                    null,
-                    -1,
-                    artsDigivolutionClass,
-                    null,
-                    ignoreSelection: true
-                ));
+                yield return ContinuousController.instance.StartCoroutine(new PlayCardClass(
+                    cardSources: new List<CardSource>() { card },
+                    hashtable: null,
+                    payCost: false,
+                    targetPermanent: permanent,
+                    isTapped: false,
+                    root: SelectCardEffect.Root.Execution,
+                    activateETB: true).PlayCard());
             }
         }
     }