Sfoglia il codice sorgente

Apply suggestions from code review

Co-authored-by: x89rt2 <x89rt2@gmail.com>
Co-authored-by: hooperk <hooperk@tcd.ie>
hooperk 3 mesi fa
parent
commit
462f11ca98
1 ha cambiato i file con 2 aggiunte e 2 eliminazioni
  1. 2 2
      Assets/Scripts/CardEffect/BT25/Black/BT25_075.cs

+ 2 - 2
Assets/Scripts/CardEffect/BT25/Black/BT25_075.cs

@@ -152,7 +152,7 @@ namespace DCGO.CardEffects.BT25
                     }
                     else
                     {
-                        int maxCount = Math.Min(toLink, validHandCardCount);
+                        int maxCount = Math.Min(toLink, validTrashCardCount);
                         SelectCardEffect selectCardEffect = GManager.instance.GetComponent<SelectCardEffect>();
 
                         selectCardEffect.SetUp(
@@ -162,7 +162,7 @@ namespace DCGO.CardEffects.BT25
                             canNoSelect: () => true,
                             selectCardCoroutine: null,
                             afterSelectCardCoroutine: AfterSelectCardCoroutine,
-                            message: "Select 1 link card",
+                            message: "Select link card(s)",
                             maxCount: maxCount,
                             canEndNotMax: true,
                             isShowOpponent: true,