Browse Source

Merge pull request #779 from DCGO2/x89rt2-patch-19

Update BT16_028.cs
hooperk 5 tháng trước cách đây
mục cha
commit
1f8fa8485c

+ 3 - 7
Assets/Scripts/CardEffect/BT16/Blue/BT16_028.cs

@@ -84,12 +84,8 @@ namespace DCGO.CardEffects.BT16
 
 
                 bool CanUseCondition(Hashtable hashtable)
                 bool CanUseCondition(Hashtable hashtable)
                 {
                 {
-                    if (CardEffectCommons.CanTriggerWhenDigivolving(hashtable, card))
-                    {
-                        return true;
-                    }
-
-                    return false;
+                    return CardEffectCommons.CanTriggerWhenDigivolving(hashtable, card)
+                        && CardEffectCommons.IsExistOnBattleArea(card);
                 }
                 }
 
 
                 bool CanActivateCondition(Hashtable hashtable)
                 bool CanActivateCondition(Hashtable hashtable)
@@ -273,4 +269,4 @@ namespace DCGO.CardEffects.BT16
             return cardEffects;
             return cardEffects;
         }
         }
     }
     }
-}
+}