Fix lua error from leaving an active run maybe?

This commit is contained in:
andrew6180
2024-11-19 13:42:29 -07:00
parent 03f73d50e5
commit 96a35837df
+1 -1
View File
@@ -211,7 +211,7 @@ local segmentTypeToString = {
---@return boolean
---@return number
function classCombat:IsMythicDungeon()
local bIsMythicPlusSegment = self.is_mythic_dungeon_segment
local bIsMythicPlusSegment = self.is_mythic_dungeon and self.is_mythic_dungeon_segment
local runId = self.is_mythic_dungeon_run_id
return bIsMythicPlusSegment, runId
end