Просмотр исходного кода

Fix Link costs cannot be reduced

hooperk 4 месяцев назад
Родитель
Сommit
f11b0f823d
1 измененных файлов с 0 добавлено и 6 удалено
  1. 0 6
      Assets/Scripts/Script/CardEffects/ChangeLinkCostClass.cs

+ 0 - 6
Assets/Scripts/Script/CardEffects/ChangeLinkCostClass.cs

@@ -26,12 +26,6 @@ public class ChangeLinkCostClass : ICardEffect, IChangeLinkCostEffect
         {
             int newCost = _changeCostFunc(cardSource, permanent, cost, root);
 
-            if (IsUpDown()
-                && newCost < cost)
-            {
-                newCost = cost;
-            }
-
             cost = newCost;
         }