x89rt2 5 месяцев назад
Родитель
Сommit
141850fa42
1 измененных файлов с 5 добавлено и 1 удалено
  1. 5 1
      Assets/Scripts/CardEffect/AD1/Blue/AD1_024.cs

+ 5 - 1
Assets/Scripts/CardEffect/AD1/Blue/AD1_024.cs

@@ -140,7 +140,11 @@ namespace DCGO.CardEffects.AD1
                             || CardEffectCommons.CanTriggerWhenPermanentDigivolving(hashtable, IsDigimonCondition));
                 }
 
-                bool IsDigimonCondition(Permanent permanent) => permanent.IsDigimon;
+                bool IsDigimonCondition(Permanent permanent)
+                {
+                    return CardEffectCommons.IsExistOnBattleArea(card)
+                        && permanent.IsDigimon;
+                }
 
                 bool IsOpponentsDigimon(Permanent permanent) => CardEffectCommons.IsPermanentExistsOnOpponentBattleAreaDigimon(permanent, card);