diff --git a/RatingBuster/libs/LibStatLogic-1.1/LibStatLogic-1.1.lua b/RatingBuster/libs/LibStatLogic-1.1/LibStatLogic-1.1.lua index f64b1d6..4f833ff 100644 --- a/RatingBuster/libs/LibStatLogic-1.1/LibStatLogic-1.1.lua +++ b/RatingBuster/libs/LibStatLogic-1.1/LibStatLogic-1.1.lua @@ -5537,7 +5537,7 @@ setmetatable(cache, {__mode = "kv"}) -- weak table to enable garbage collection local tip = StatLogic.tip if not tip then -- Create a custom tooltip for scanning - tip = CreateFrame("GameTooltip", "StatLogicTooltip", nil, "GameTooltipTemplate") + tip = CreateFrame("GameTooltip", "StatLogicTooltip", nil, "BasicTooltipTemplate") StatLogic.tip = tip tip:SetOwner(UIParent, "ANCHOR_NONE") for i = 1, 30 do @@ -5556,7 +5556,7 @@ end local tipMiner = StatLogic.tipMiner if not tipMiner then -- Create a custom tooltip for data mining - tipMiner = CreateFrame("GameTooltip", "StatLogicMinerTooltip", nil, "GameTooltipTemplate") + tipMiner = CreateFrame("GameTooltip", "StatLogicMinerTooltip", nil, "BasicTooltipTemplate") StatLogic.tipMiner = tipMiner tipMiner:SetOwner(UIParent, "ANCHOR_NONE") for i = 1, 30 do diff --git a/RatingBuster/libs/LibStatLogic-1.2/LibStatLogic-1.2.lua b/RatingBuster/libs/LibStatLogic-1.2/LibStatLogic-1.2.lua index 6708ef3..73c4913 100644 --- a/RatingBuster/libs/LibStatLogic-1.2/LibStatLogic-1.2.lua +++ b/RatingBuster/libs/LibStatLogic-1.2/LibStatLogic-1.2.lua @@ -5575,7 +5575,7 @@ setmetatable(cache, {__mode = "kv"}) -- weak table to enable garbage collection local tip = StatLogic.tip if not tip then -- Create a custom tooltip for scanning - tip = CreateFrame("GameTooltip", MAJOR.."Tooltip", nil, "GameTooltipTemplate") + tip = CreateFrame("GameTooltip", MAJOR.."Tooltip", nil, "BasicTooltipTemplate") StatLogic.tip = tip tip:SetOwner(UIParent, "ANCHOR_NONE") for i = 1, 30 do @@ -5594,7 +5594,7 @@ end local tipMiner = StatLogic.tipMiner if not tipMiner then -- Create a custom tooltip for data mining - tipMiner = CreateFrame("GameTooltip", MAJOR.."MinerTooltip", nil, "GameTooltipTemplate") + tipMiner = CreateFrame("GameTooltip", MAJOR.."MinerTooltip", nil, "BasicTooltipTemplate") StatLogic.tipMiner = tipMiner tipMiner:SetOwner(UIParent, "ANCHOR_NONE") for i = 1, 30 do