From 3400403e1327ba26d6818b3fd395de4c1cd83eff Mon Sep 17 00:00:00 2001 From: xiekaidong Date: Mon, 25 Dec 2023 11:28:41 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lua/app/userdata/dungeon/dungeon_rune_entity.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/app/userdata/dungeon/dungeon_rune_entity.lua b/lua/app/userdata/dungeon/dungeon_rune_entity.lua index b1a8b07a..d513e56f 100644 --- a/lua/app/userdata/dungeon/dungeon_rune_entity.lua +++ b/lua/app/userdata/dungeon/dungeon_rune_entity.lua @@ -119,7 +119,7 @@ function DungeonRuneEntity:updatePassedMaxId(maxId) if not maxId then return end - self.maxPassedId = maxId + self.maxPassedId = math.max(maxId - 1, 1) end function DungeonRuneEntity:canSweep(id)