From 4ca111da252b2c872f108a1874e4608b5b54711c Mon Sep 17 00:00:00 2001 From: zhangqiang <657634622@qq.com> Date: Sat, 29 May 2021 23:14:16 +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=95=B0=E6=8D=AE=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../~Lua/Modules/FightLevel/FightLevelManager.lua | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/Assets/ManagedResources/~Lua/Modules/FightLevel/FightLevelManager.lua b/Assets/ManagedResources/~Lua/Modules/FightLevel/FightLevelManager.lua index 19e0b25c59..74ed788058 100644 --- a/Assets/ManagedResources/~Lua/Modules/FightLevel/FightLevelManager.lua +++ b/Assets/ManagedResources/~Lua/Modules/FightLevel/FightLevelManager.lua @@ -104,7 +104,9 @@ function this.GetChapterLevelData(allChapterId,levelId) end end function this.SetCurChapterId(ChapterId) - curChapterId = ChapterId + if curChapterId < ChapterId then + curChapterId = ChapterId + end end function this.GetCurChapterId() return curChapterId @@ -117,7 +119,9 @@ function this.GetisShowChapterOpenPopup() return isShowChapterOpenPopup end function this.SetCurChapterLevelId(ChapterLevelId) - curChapterLevelId = ChapterLevelId + if curChapterLevelId < ChapterLevelId then + curChapterLevelId = ChapterLevelId + end end function this.GetCurChapterLevelId() return curChapterLevelId