From 582ab5129911ab53733a5af1efc3299d012354a7 Mon Sep 17 00:00:00 2001 From: gaoxin Date: Fri, 22 Oct 2021 21:25:49 +0800 Subject: [PATCH] =?UTF-8?q?=E3=80=90=E5=B1=B1=E6=B2=B3=E7=A4=BE=E7=A8=B7?= =?UTF-8?q?=E5=9B=BE=E3=80=91=E6=AF=8F=E6=97=A5=E5=A5=96=E5=8A=B1=E6=96=87?= =?UTF-8?q?=E5=AD=97=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../~Lua/Modules/FightLevel/FightLevelChapterPanel.lua | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Assets/ManagedResources/~Lua/Modules/FightLevel/FightLevelChapterPanel.lua b/Assets/ManagedResources/~Lua/Modules/FightLevel/FightLevelChapterPanel.lua index 71beca600a..ef756e7ac5 100644 --- a/Assets/ManagedResources/~Lua/Modules/FightLevel/FightLevelChapterPanel.lua +++ b/Assets/ManagedResources/~Lua/Modules/FightLevel/FightLevelChapterPanel.lua @@ -52,7 +52,8 @@ function FightLevelChapterPanel:BindEvent() -- 计算可获得的数量 local starNum = FightLevelManager.GetAllChapterStars() local getNum = starNum * 5 + 50 - MsgPanel.ShowTwo(string.format("当前可领取玉衡龙魂丹%s(星数×5+50),确认领取?", UIColorStr.GREEN, getNum), nil, function() + local itemConfig = ConfigManager.GetConfigData(ConfigName.ItemConfig, 1226) + MsgPanel.ShowTwo(string.format("当前可领取%s%s(星数×5+50),每日可领取一次,确认领取?", itemConfig.Name, UIColorStr.GREEN, getNum), nil, function() -- 请求领取奖励 self.rewardKeKaiQi:SetActive(false) self.rewardOpen:SetActive(false)