public
Description: WoW Powerleveling addon
Homepage: http://www.tekkub.net/
Clone URL: git://github.com/tekkub/tourguide.git
Click here to lend your support to: tourguide and make a donation at www.pledgie.com !
Make waypoints purge every time the status frame changes, not just when 
there is a note
tekkub (author)
Sun Dec 02 19:24:17 -0800 2007
commit  6204be3eaa144431f8a36e7b64b18c18792294b1
tree    00a01c562c797dead52c4d436ffb424898312b00
parent  7e21b187bfbceaf6b1a6c1c4c1d681e93b1fd55a
...
60
61
62
 
 
63
64
65
...
60
61
62
63
64
65
66
67
0
@@ -60,6 +60,8 @@ function TourGuide:ParseAndMapCoords(note, desc, zone)
0
     end
0
   end
0
 
0
+ if not note then return end
0
+
0
   for x,y in note:gmatch(L.COORD_MATCH) do MapPoint(zone, tonumber(x), tonumber(y), desc) end
0
 end
0
 
...
193
194
195
196
 
197
198
199
...
193
194
195
 
196
197
198
199
0
@@ -193,7 +193,7 @@ function TourGuide:UpdateStatusFrame()
0
   local zonename = self:GetObjectiveTag("Z", nextstep) or self.zonename
0
 
0
   -- Mapping
0
- if note and (TomTom or Cartographer_Waypoints) and (lastmapped ~= quest or lastmappedaction ~= action) then
0
+ if (TomTom or Cartographer_Waypoints) and (lastmapped ~= quest or lastmappedaction ~= action) then
0
     lastmappedaction, lastmapped = action, quest
0
     self:ParseAndMapCoords(note, quest, zonename) --, zone)
0
   end

Comments

    No one has commented yet.