From 0beed82d2ba5274f3ac1d9503c5822fc7e41028f Mon Sep 17 00:00:00 2001 From: Zidras <10605951+Zidras@users.noreply.github.com> Date: Sun, 3 Dec 2023 19:34:24 +0000 Subject: [PATCH] Core: fix LoadZone on mapless zones for users without map patch --- DBM-Core/DBM-Core.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/DBM-Core/DBM-Core.lua b/DBM-Core/DBM-Core.lua index 343082eb..54df2f23 100644 --- a/DBM-Core/DBM-Core.lua +++ b/DBM-Core/DBM-Core.lua @@ -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 } @@ -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