Browse Source

Update MindLink.cs

x89rt2 5 months ago
parent
commit
e2c815a479

+ 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
             }
         }
     }
-}
+}