Fixed issue with coords not showing in certain instances
p3lim-52096 [05-10-09 - 23:35]
Fixed issue with coords not showing in certain instances
git-svn-id: svn://svn.wowinterface.com/pMinimap-54/trunk@98 ae24c21f-2f0c-4c94-9256-0092abe71e0d
diff --git a/pMinimap/pMinimap.lua b/pMinimap/pMinimap.lua
index 27c74d5..f359a98 100644
--- a/pMinimap/pMinimap.lua
+++ b/pMinimap/pMinimap.lua
@@ -46,7 +46,7 @@ do
total = 0.25
local x, y = GetPlayerMapPosition('player')
- if(x ~= 0 and y ~= 0 and not IsInInstance()) then
+ if(x ~= 0 and y ~= 0) then
self.Text:SetFormattedText('%.'..pMinimapDB.coordsDecimals..'f,%.'..pMinimapDB.coordsDecimals..'f', x * 100, y * 100)
else
self.Text:SetText()