1
0
Bifurcation 0

This should resolve issue 458.

Cette révision appartient à :
Nathanial.C.Jones 2011-07-06 18:22:45 +00:00
Parent 0241a59dc5
révision 62ca61c66d
1 fichiers modifiés avec 7 ajouts et 0 suppressions

Voir le fichier

@ -454,6 +454,13 @@ function load_graph_links()
local function convert_coordinate(coord)
QuestHelper: Assert(coord[1] and coord[2] and coord[3])
-- I hate Blizzard... They can't make up their mind weather we are on TwilightHighlands or TwilightHiglands_terrain1, but we only seem to be on one or the other.
if coord[1] == 177 and not QuestHelper_ZoneLookup[coord[1]] then
coord[1] = 184
elseif coord[1] == 184 and not QuestHelper_ZoneLookup[coord[1]] then
coord[1] = 177
end
-- I hate Blizzard... They can't make up their mind weather we are on Hyjal or Hyjal_terrain1, but we only seem to be on one or the other.
if coord[1] == 198 and not QuestHelper_ZoneLookup[coord[1]] then
coord[1] = 185