Skip to content

Commit

Permalink
Core: fix LoadZone on mapless zones for users without map patch
Browse files Browse the repository at this point in the history
  • Loading branch information
Zidras committed Dec 3, 2023
1 parent 289ac61 commit 0beed82
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions DBM-Core/DBM-Core.lua
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ local function currentFullDate()
end

DBM = {
Revision = parseCurseDate("20230926231819"),
Revision = parseCurseDate("20231203193200"),
DisplayVersion = "10.1.7 alpha", -- the string that is shown as version
ReleaseRevision = releaseDate(2023, 5, 25) -- the date of the latest stable version that is available, optionally pass hours, minutes, and seconds for multiple releases in one day
}
Expand Down Expand Up @@ -3114,7 +3114,7 @@ do
--These can still change even if mapID doesn't
difficultyIndex = currentDifficultyIndex or difficulty
LastGroupSize = instanceGroupSize
if LastInstanceMapID == mapID then
if LastInstanceMapID == mapID and LastInstanceZoneName == zoneName then -- ZoneName check for non-patch users
self:TransitionToDungeonBGM()
self:Debug("No action taken because mapID hasn't changed since last check", 2)
return
Expand Down

0 comments on commit 0beed82

Please sign in to comment.