2026-04-24 미스매치 목록

This commit is contained in:
2026-04-24 10:50:08 +09:00
parent b5c8e015f5
commit 14b4b47cd4
8 changed files with 198 additions and 5 deletions

View File

@@ -59,7 +59,7 @@ public void Checkout(CheckoutMachine checkoutMachine)
{
var parts = new List<string>(missing.Count);
foreach (var (group, shortage) in missing) parts.Add($"{group} x{shortage}");
Debug.Log($"장보기 목록 미충족 — 부족: {string.Join(", ", parts)}");
GameManager.Instance.GameSceneUI.ShowMissingPanel(parts);
}
}
else