Explorar el Código

Merge pull request #709 from DCGO2/x89rt2-patch-4

Update MindLink.cs
hooperk hace 5 meses
padre
commit
9d71eec561

+ 2 - 2
Assets/Scripts/Script/CardEffectCommons/KeyWordEffects/MindLink.cs

@@ -22,7 +22,7 @@ public class MindLinkClass
             {
                 if (!permanent.IsToken)
                 {
-                    if (permanent.DigivolutionCards.Count(cardSource => cardSource.IsTamer) == 0)
+                    if (permanent.DigivolutionCards.Count(cardSource => cardSource.IsTamer && !cardSource.IsFlipped) == 0)
                     {
                         if (_digimonCondition == null || _digimonCondition(permanent))
                         {
@@ -79,4 +79,4 @@ public class MindLinkClass
             }
         }
     }
-}
+}