|
|
@@ -2,6 +2,7 @@ using System.Collections;
|
|
|
using System.Collections.Generic;
|
|
|
using System;
|
|
|
using System.Linq;
|
|
|
+using UnityEngine;
|
|
|
|
|
|
namespace DCGO.CardEffects.EX6
|
|
|
{
|
|
|
@@ -277,7 +278,7 @@ namespace DCGO.CardEffects.EX6
|
|
|
|
|
|
selectCardEffect.SetUpCustomMessage("Select 1 card to place at the bottom of digivolution cards.", "The opponent is selecting 1 card to place at the bottom of digivolution cards.");
|
|
|
|
|
|
- yield return StartCoroutine(selectCardEffect.Activate());
|
|
|
+ yield return ContinuousController.instance.StartCoroutine(selectCardEffect.Activate());
|
|
|
|
|
|
IEnumerator SelectCardCoroutine(CardSource cardSource)
|
|
|
{
|
|
|
@@ -288,7 +289,7 @@ namespace DCGO.CardEffects.EX6
|
|
|
|
|
|
if (selectedCards.Count >= 1)
|
|
|
{
|
|
|
- if (CardEffectCommons.HasMatchConditionPermanent(CanSelectPermanentCondition))
|
|
|
+ if (CardEffectCommons.HasMatchConditionPermanent(CanSelectPermanentCondition, true))
|
|
|
{
|
|
|
Permanent selectedPermanent = card.Owner.GetBreedingAreaPermanents()[0];
|
|
|
|