|
|
@@ -170,17 +170,14 @@ public class P_118 : CEntity_Effect
|
|
|
{
|
|
|
if (isExistOnField(card))
|
|
|
{
|
|
|
- if (card.Owner.GetBattleAreaDigimons().Contains(card.PermanentOfThisCard()))
|
|
|
- {
|
|
|
- yield return ContinuousController.instance.StartCoroutine(
|
|
|
- CardEffectCommons.DNADigivolvePermanentsIntoHandOrTrashCard(
|
|
|
- CanSelectCardCondition,
|
|
|
- payCost: true,
|
|
|
- isHand: true,
|
|
|
- activateClass,
|
|
|
- permanentConditions: new Func<Permanent, bool>[] { (permanent) => permanent == card.PermanentOfThisCard() }
|
|
|
- ));
|
|
|
- }
|
|
|
+ yield return ContinuousController.instance.StartCoroutine(
|
|
|
+ CardEffectCommons.DNADigivolvePermanentsIntoHandOrTrashCard(
|
|
|
+ CanSelectCardCondition,
|
|
|
+ payCost: true,
|
|
|
+ isHand: true,
|
|
|
+ activateClass,
|
|
|
+ permanentConditions: new Func<Permanent, bool>[] { (permanent) => permanent == card.PermanentOfThisCard() }
|
|
|
+ ));
|
|
|
}
|
|
|
}
|
|
|
}
|