diff --git a/Client/Assets/1_Script/Prefab/ShopTypeitemPrefab.cs b/Client/Assets/1_Script/Prefab/ShopTypeitemPrefab.cs index 86893615..684b52c8 100644 --- a/Client/Assets/1_Script/Prefab/ShopTypeitemPrefab.cs +++ b/Client/Assets/1_Script/Prefab/ShopTypeitemPrefab.cs @@ -28,10 +28,13 @@ public class ShopTypeitemPrefab : MonoBehaviour BuyShopItemResp resp = new BuyShopItemResp(); resp.Request((data) => { - Debug.Log("¾ÆÀÌÅÛ ±¸¸Å ¼º°ø"); Statics.gold = data.gold; Statics.cash = data.cash; GameCtrl.Instance.MoneyUpdate(); + Statics.itemManager.box.add(data.deck_unit); + Statics.itemManager.box.add(data.equipment); + Statics.itemManager.box.add(data.consumableItem); + Statics.itemManager.box.add(data.etcItem); }, shopItemData.index); } }