From 62ca61c66dbc98de4ec851f0fee0fd4ceee2cd39 Mon Sep 17 00:00:00 2001 From: "Nathanial.C.Jones" Date: Wed, 6 Jul 2011 18:22:45 +0000 Subject: [PATCH] This should resolve issue 458. --- QuestHelper/pathfinding.lua | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/QuestHelper/pathfinding.lua b/QuestHelper/pathfinding.lua index 0341e8f..c46f827 100644 --- a/QuestHelper/pathfinding.lua +++ b/QuestHelper/pathfinding.lua @@ -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