浏览代码

Fix Link costs cannot be reduced

hooperk 4 月之前
父节点
当前提交
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);
             int newCost = _changeCostFunc(cardSource, permanent, cost, root);
 
 
-            if (IsUpDown()
-                && newCost < cost)
-            {
-                newCost = cost;
-            }
-
             cost = newCost;
             cost = newCost;
         }
         }