From 8825e6fa661f9d56644294c885244b6e5b3e256b Mon Sep 17 00:00:00 2001 From: Xurkon Date: Sat, 21 Mar 2026 09:23:42 -0500 Subject: [PATCH] fix: nil out WotLKDB globals after pull to eliminate _G taint --- Modules/QuestieInit.lua | 1 + 1 file changed, 1 insertion(+) diff --git a/Modules/QuestieInit.lua b/Modules/QuestieInit.lua index 874529e..7067ef3 100644 --- a/Modules/QuestieInit.lua +++ b/Modules/QuestieInit.lua @@ -489,6 +489,7 @@ function QuestieInit:LoadBaseDB() local function _pullGlobal(dbKey, globalName) if type(_G[globalName]) == "table" then QuestieDB[dbKey] = _G[globalName] + _G[globalName] = nil -- Remove tainted global from _G; data lives on through QuestieDB[dbKey] return true end return false