From c1146d473dd96040b6602e5c1cc1dd3c2358314a Mon Sep 17 00:00:00 2001 From: Andrew6810 <16847730+andrew6180@users.noreply.github.com> Date: Mon, 31 Oct 2022 13:32:00 -0700 Subject: [PATCH] Remove updated while running version check thing. --- ElvUI/Core/Core.lua | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/ElvUI/Core/Core.lua b/ElvUI/Core/Core.lua index fcbf1a1..d25c13c 100644 --- a/ElvUI/Core/Core.lua +++ b/ElvUI/Core/Core.lua @@ -703,13 +703,7 @@ do local ver = tonumber(E.version) message = tonumber(message) - if ver ~= G.general.version then - if not E.shownUpdatedWhileRunningPopup and not InCombatLockdown() then - E:StaticPopup_Show("ELVUI_UPDATED_WHILE_RUNNING") - - E.shownUpdatedWhileRunningPopup = true - end - elseif message and (message > ver) then + if message and (message > ver) then if not E.recievedOutOfDateMessage then E:Print(L["ElvUI is out of date. You can download the newest version from the Ascension Launcher, or https://github.com/Ascension-Addons/ElvUI"])