cull(engine-cleanup): pass-8 phase-2 cascade round 4 after CardDetailUI stub

This commit is contained in:
gamer147
2026-07-03 22:36:16 -04:00
parent 0bf981ce4d
commit 4950a57b11
2 changed files with 0 additions and 26 deletions

View File

@@ -19,30 +19,6 @@ public class CardMake : MonoBehaviour
public Action OnClose;
private Action _onFinishCardDestruct;
private void TriggerUpdateUserDeck()
{
List<string> list = new List<string>(DestructDict.Keys);
for (int i = 0; i < list.Count; i++)
{
int obj = int.Parse(list[i]);
if (OnCardSellId != null)
{
OnCardSellId(obj);
}
}
if (OnCardSell != null)
{
OnCardSell();
}
if (OnClose != null)
{
OnClose();
}
list = null;
}
private void CraftCard()
{
// Pre-Phase-5b: fired CardCreateTask via NetworkManager. See DestructCard.

View File

@@ -90,8 +90,6 @@ public class Master
private IDictionary<string, string> SkillDescDic { get; set; }
private IDictionary<string, string> FlavourTextDic { get; set; }
private IDictionary<string, string> ItemTextDic { get; set; }
public IDictionary<string, string> SleeveTextDic { get; private set; }