|
@@ -130,7 +130,6 @@ namespace DCGO.CardEffects.AD1
|
|
|
{
|
|
{
|
|
|
|
|
|
|
|
List<CardSource> cards = card.Owner.GetBattleAreaPermanents()
|
|
List<CardSource> cards = card.Owner.GetBattleAreaPermanents()
|
|
|
- .Concat(card.Owner.GetBattleAreaPermanents()).ToList()
|
|
|
|
|
.Map(card => card.TopCard)
|
|
.Map(card => card.TopCard)
|
|
|
.Where(x => x.IsTamer).ToList();
|
|
.Where(x => x.IsTamer).ToList();
|
|
|
|
|
|
|
@@ -163,7 +162,6 @@ namespace DCGO.CardEffects.AD1
|
|
|
if (CardEffectCommons.IsExistOnBattleArea(card))
|
|
if (CardEffectCommons.IsExistOnBattleArea(card))
|
|
|
{
|
|
{
|
|
|
List<CardSource> cards = card.Owner.GetBattleAreaPermanents()
|
|
List<CardSource> cards = card.Owner.GetBattleAreaPermanents()
|
|
|
- .Concat(card.Owner.Enemy.GetBattleAreaPermanents()).ToList()
|
|
|
|
|
.Map(card => card.TopCard)
|
|
.Map(card => card.TopCard)
|
|
|
.Where(x => x.IsTamer).ToList();
|
|
.Where(x => x.IsTamer).ToList();
|
|
|
|
|
|