Skip to content

Commit

Permalink
The 060 version of Wholly.
Browse files Browse the repository at this point in the history
  • Loading branch information
smaitch committed Oct 30, 2016
1 parent e96fd64 commit bc55f16
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion Wholly.lua
Original file line number Diff line number Diff line change
Expand Up @@ -322,6 +322,7 @@
-- Updates Traditional Chinese localization by gaspy10.
-- 060 Adds the ability to control the display of World Quests, including a key binding.
-- Adds a Legion Repuation Changes section.
-- Fixes the problem where the coordinates would cause issues in instances.
--
-- Known Issues
--
Expand Down Expand Up @@ -787,6 +788,7 @@ if nil == Wholly or Wholly.versionNumber < Wholly_File_Version then
self.zoneInfo.map.dungeonLevel = GetCurrentMapDungeonLevel()
self.zoneInfo.zone.mapId = self.zoneInfo.map.mapId
self.zoneInfo.zone.dungeonLevel = self.zoneInfo.map.dungeonLevel
self:UpdateCoordinateSystem()
end,
['ZONE_CHANGED_NEW_AREA'] = function(self, frame)
local mapWeSupportIsVisible = false
Expand Down Expand Up @@ -3958,7 +3960,7 @@ if nil == Wholly or Wholly.versionNumber < Wholly_File_Version then
end,

UpdateCoordinateSystem = function(self)
if WhollyDatabase.enablesPlayerCoordinates then
if WhollyDatabase.enablesPlayerCoordinates and not Grail:IsInInstance() then
self.notificationFrame:SetScript("OnUpdate", function(frame, ...) self:_OnUpdate(frame, ...) end)
else
self.notificationFrame:SetScript("OnUpdate", nil)
Expand Down
2 changes: 1 addition & 1 deletion Wholly.toc
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## Interface: 70000
## Interface: 70100
## Title: Wholly
## Author: Scott M Harrison
## Notes: Shows quest database and map pins
Expand Down

0 comments on commit bc55f16

Please sign in to comment.