Explorar el Código

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

Update BT16_028.cs
hooperk hace 5 meses
padre
commit
1f8fa8485c
Se han modificado 1 ficheros con 3 adiciones y 7 borrados
  1. 3 7
      Assets/Scripts/CardEffect/BT16/Blue/BT16_028.cs

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

@@ -84,12 +84,8 @@ namespace DCGO.CardEffects.BT16
 
                 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)
@@ -273,4 +269,4 @@ namespace DCGO.CardEffects.BT16
             return cardEffects;
         }
     }
-}
+}