소스 검색

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

Update AD1_016.cs
hooperk 5 달 전
부모
커밋
61c1d7f96a
1개의 변경된 파일1개의 추가작업 그리고 8개의 파일을 삭제
  1. 1 8
      Assets/Scripts/CardEffect/AD1/Yellow/AD1_016.cs

+ 1 - 8
Assets/Scripts/CardEffect/AD1/Yellow/AD1_016.cs

@@ -94,13 +94,6 @@ namespace DCGO.CardEffects.AD1
                     {
                         List<CardSource> selectedCards = new List<CardSource>();
 
-                        IEnumerator SelectCardCoroutine(CardSource cardSource)
-                        {
-                            selectedCards.Add(cardSource);
-
-                            yield return null;
-                        }
-
                         if (fromHand)
                         {
                             SelectHandEffect selectHandEffect = GManager.instance.GetComponent<SelectHandEffect>();
@@ -160,7 +153,7 @@ namespace DCGO.CardEffects.AD1
                         maxCount: 1,
                         canNoSelect: false,
                         canEndNotMax: false,
-                        selectPermanentCoroutine: null,
+                        selectPermanentCoroutine: SelectPermanentCoroutine,
                         afterSelectPermanentCoroutine: null,
                         mode: SelectPermanentEffect.Mode.Custom,
                         cardEffect: activateClass);