Parcourir la source

Merge pull request #932 from DCGO2/x89rt2-patch-9

Fix Hybrids not evoing from trash.
x89rt2 il y a 4 mois
Parent
commit
f8a2198adf

+ 2 - 2
Assets/Scripts/CardEffect/BT17/Blue/BT17_023.cs

@@ -17,7 +17,7 @@ namespace DCGO.CardEffects.BT17
             {
                 bool Condition()
                 {
-                    return card.Owner.HandCards.Contains(card);
+                    return true;
                 }
 
                 bool PermanentCondition(Permanent targetPermanent)
@@ -216,4 +216,4 @@ namespace DCGO.CardEffects.BT17
             return cardEffects;
         }
     }
-}
+}

+ 2 - 2
Assets/Scripts/CardEffect/BT18/Blue/BT18_022.cs

@@ -31,7 +31,7 @@ namespace DCGO.CardEffects.BT18
             {
                 bool Condition()
                 {
-                    return card.Owner.HandCards.Contains(card);
+                    return true;
                 }
 
                 bool PermanentCondition(Permanent targetPermanent)
@@ -307,4 +307,4 @@ namespace DCGO.CardEffects.BT18
             return cardEffects;
         }
     }
-}
+}

+ 2 - 2
Assets/Scripts/CardEffect/BT18/Blue/BT18_025.cs

@@ -30,7 +30,7 @@ namespace DCGO.CardEffects.BT18
             {
                 bool Condition()
                 {
-                    return card.Owner.HandCards.Contains(card);
+                    return true;
                 }
 
                 bool PermanentCondition(Permanent targetPermanent)
@@ -241,4 +241,4 @@ namespace DCGO.CardEffects.BT18
             return cardEffects;
         }
     }
-}
+}

+ 2 - 2
Assets/Scripts/CardEffect/BT18/Green/BT18_048.cs

@@ -31,7 +31,7 @@ namespace DCGO.CardEffects.BT18
             {
                 bool Condition()
                 {
-                    return card.Owner.HandCards.Contains(card);
+                    return true;
                 }
 
                 bool PermanentCondition(Permanent targetPermanent)
@@ -296,4 +296,4 @@ namespace DCGO.CardEffects.BT18
             return cardEffects;
         }
     }
-}
+}

+ 2 - 2
Assets/Scripts/CardEffect/BT18/Green/BT18_049.cs

@@ -30,7 +30,7 @@ namespace DCGO.CardEffects.BT18
             {
                 bool Condition()
                 {
-                    return card.Owner.HandCards.Contains(card);
+                    return true;
                 }
 
                 bool PermanentCondition(Permanent targetPermanent)
@@ -210,4 +210,4 @@ namespace DCGO.CardEffects.BT18
             return cardEffects;
         }
     }
-}
+}

+ 2 - 2
Assets/Scripts/CardEffect/BT18/Red/BT18_011.cs

@@ -30,7 +30,7 @@ namespace DCGO.CardEffects.BT18
             {
                 bool Condition()
                 {
-                    return card.Owner.HandCards.Contains(card);
+                    return true;
                 }
 
                 bool PermanentCondition(Permanent targetPermanent)
@@ -137,4 +137,4 @@ namespace DCGO.CardEffects.BT18
             return cardEffects;
         }
     }
-}
+}

+ 2 - 2
Assets/Scripts/CardEffect/BT18/Yellow/BT18_037.cs

@@ -30,7 +30,7 @@ namespace DCGO.CardEffects.BT18
             {
                 bool Condition()
                 {
-                    return card.Owner.HandCards.Contains(card);
+                    return true;
                 }
 
                 bool PermanentCondition(Permanent targetPermanent)
@@ -196,4 +196,4 @@ namespace DCGO.CardEffects.BT18
             return cardEffects;
         }
     }
-}
+}