Mercurial > wow > worldplan
comparison WorldPlan.lua @ 117:a4dfdd4f1cf3 v7.3.2-20171215
- Fixed filter pins not working on Argus maps
- More taint counter-measures
author | Nenue |
---|---|
date | Fri, 15 Dec 2017 16:38:09 -0500 |
parents | e8b6c5433128 |
children |
comparison
equal
deleted
inserted
replaced
116:bf4a36378bb9 | 117:a4dfdd4f1cf3 |
---|---|
7 local tinsert, pairs, floor = tinsert, pairs, floor | 7 local tinsert, pairs, floor = tinsert, pairs, floor |
8 local tremove, ipairs, wipe, unpack = tremove, ipairs, wipe, unpack | 8 local tremove, ipairs, wipe, unpack = tremove, ipairs, wipe, unpack |
9 local select, type, tostring, tonumber = select, type, tostring, tonumber | 9 local select, type, tostring, tonumber = select, type, tostring, tonumber |
10 local ITEM_QUALITY_COLORS = ITEM_QUALITY_COLORS | 10 local ITEM_QUALITY_COLORS = ITEM_QUALITY_COLORS |
11 local BROKEN_ISLES_ID = 1007 | 11 local BROKEN_ISLES_ID = 1007 |
12 local ARGUS_ID = 1184 | |
12 local GetCurrentMapAreaID = GetCurrentMapAreaID | 13 local GetCurrentMapAreaID = GetCurrentMapAreaID |
13 local GetTime, IsLoggedIn = GetTime, IsLoggedIn | 14 local GetTime, IsLoggedIn = GetTime, IsLoggedIn |
14 local DEBUG_HISTORY = {} | 15 local DEBUG_HISTORY = {} |
15 local ofunc = {} | 16 local ofunc = {} |
16 | 17 |
423 [1077] = true, -- Dreamgrove | 424 [1077] = true, -- Dreamgrove |
424 [1096] = true, -- Eye of Azshara | 425 [1096] = true, -- Eye of Azshara |
425 [1080] = true, -- Thunder Totem | 426 [1080] = true, -- Thunder Totem |
426 [1072] = true, -- True Shot Lodge, | 427 [1072] = true, -- True Shot Lodge, |
427 | 428 |
428 } | 429 [1184] = true, -- Argus continent |
430 [1171] = true, -- Antoran Wastes, | |
431 [1135] = true, -- Krokuun, | |
432 [1170] = true, -- Mac'aree | |
433 } | |
429 | 434 |
430 function WorldPlanCore:SetCurrentMap(event) | 435 function WorldPlanCore:SetCurrentMap(event) |
431 local mapAreaID, isContinent = GetCurrentMapAreaID() | 436 local mapAreaID, isContinent = GetCurrentMapAreaID() |
432 if not mapAreaID then | 437 if not mapAreaID then |
433 return | 438 return |