diff --git a/Forest/Assets/Scripts/Gameplay/UI/Shop/UIMainShopController.cs b/Forest/Assets/Scripts/Gameplay/UI/Shop/UIMainShopController.cs index 6eff16b..01b2f16 100644 --- a/Forest/Assets/Scripts/Gameplay/UI/Shop/UIMainShopController.cs +++ b/Forest/Assets/Scripts/Gameplay/UI/Shop/UIMainShopController.cs @@ -28,19 +28,19 @@ public class UIMainShopController : UIWindow { _biEventFirst = EventFirst.fte_buy_coin_small; _biEvent = Event.click_buy_coin_small; - ShopToBuy(platform + "_pack_coins_100"); + ShopToBuy(platform + "_CoinBox_100"); }); BindButton("MainShop/CoinsList/Viewport/Content/CoinMediumPack/Btn_Buy", () => { _biEventFirst = EventFirst.fte_buy_coin_medium; _biEvent = Event.click_buy_coin_medium; - ShopToBuy(platform + "_pack_coins_600"); + ShopToBuy(platform + "_CoinBox_600"); }); BindButton("MainShop/CoinsList/Viewport/Content/CoinLargePack/Btn_Buy", () => { _biEventFirst = EventFirst.fte_buy_coin_large; _biEvent = Event.click_buy_coin_large; - ShopToBuy(platform + "_pack_coins_1200"); + ShopToBuy(platform + "_CoinBox_1200"); }); }