From c29db8d727b9851ea4942c6dd92012b4869d0f53 Mon Sep 17 00:00:00 2001 From: HonorGoG Date: Thu, 23 Aug 2018 21:13:50 -0700 Subject: [PATCH] - TitanLocation: Fixed logic error looking for CT_Library rather than CT_MapMod which was preventing coordinates from appearing. --- TitanLocation/TitanLocation.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/TitanLocation/TitanLocation.lua b/TitanLocation/TitanLocation.lua index eb46ae8..b240db0 100755 --- a/TitanLocation/TitanLocation.lua +++ b/TitanLocation/TitanLocation.lua @@ -552,7 +552,7 @@ end local TPL_CMF_IsFirstTime = true; function TitanPanelLocation_CreateMapFrames() WorldMapFrame:HookScript("OnShow", function(self) - if (TPL_CMF_IsFirstTime and not _G["CT_Library"]) then + if (TPL_CMF_IsFirstTime and not _G["CT_MapMod"]) then TPL_CMF_IsFirstTime = false; local frame = CreateFrame("FRAME", "TitanMapFrame", WorldMapFrame.BorderFrame) local font1 = frame:CreateFontString("TitanMapPlayerLocation", "ARTWORK", "GameFontNormal"); -- 1.7.9.5