1
0
Bifurcation 0

Readded some critical code that was accidentally removed. Also removed some odd characters.

Cette révision appartient à :
Nathanial.C.Jones 2011-02-13 13:31:15 +00:00
Parent 2f5b68388b
révision b13900cf4d
1 fichiers modifiés avec 15 ajouts et 8 suppressions

Voir le fichier

@ -125,20 +125,20 @@ local static_shared_routes =
-- Route to new zone. Not valid, exists only to keep routing from exploding if you don't have the flight routes there.
{{41, 0.5, 0.5}, {64, 0.5, 0.5}, 7200}, -- Eversong Woods <--> Sunwell
Ê Ê-- More Alliance routes than anything, but without them theres no valid path to these areas for Horde characters.
Ê Ê{{24, 0.559, 0.896}, {21, 0.305, 0.414}, 5}, -- Rut'Theran Village <--> Darnassus
Ê Ê{{3, 0.204, 0.542}, {24, 0.523, 0.895}, 210}, -- Azuremyst Isle <--> Teldrassil
Ê Ê{{24, 0.550, 0.936}, {36, 0.226, 0.557}, 210}, -- Teldrassil <--> Stormwind City
-- More Alliance routes than anything, but without them theres no valid path to these areas for Horde characters.
{{24, 0.559, 0.896}, {21, 0.305, 0.414}, 5}, -- Rut'Theran Village <--> Darnassus
{{3, 0.204, 0.542}, {24, 0.523, 0.895}, 210}, -- Azuremyst Isle <--> Teldrassil
{{24, 0.550, 0.936}, {36, 0.226, 0.557}, 210}, -- Teldrassil <--> Stormwind City
{{40, 0.318, 0.503}, {32, 0.347, 0.84}, 130}, -- Burning Steppes <--> Searing Gorge
{{70, 0.235, 0.578}, {68, 0.496, 0.784}, 210}, -- Kamagua <--> Moa'ki
{{65, 0.789, 0.536}, {68, 0.480, 0.787}, 210}, -- Unu'pe <--> Moa'ki
{{34, 0.817, 0.461}, {78, 0.492, 0.312}, 86400}, -- EPL Ebon Hold <--> Scarlet Enclave Ebon Hold. Exists solely to fix some pathing crashes. 24-hour boat ride :D
Ê Ê{{164, 0.84, 0.41}, {8, 0.37, 0.82}, 5}, -- Uldum <--> Tanaris
Ê Ê{{164, 0.70, 0.22}, {8, 0.25, 0.66}, 5}, -- Uldum <--> Tanaris
Ê Ê{{210, 0.84, 0.41}, {8, 0.37, 0.82}, 5}, -- Uldum <--> Tanaris
Ê Ê{{210, 0.70, 0.22}, {8, 0.25, 0.66}, 5}, -- Uldum <--> Tanaris
{{164, 0.84, 0.41}, {8, 0.37, 0.82}, 5}, -- Uldum <--> Tanaris
{{164, 0.70, 0.22}, {8, 0.25, 0.66}, 5}, -- Uldum <--> Tanaris
{{210, 0.84, 0.41}, {8, 0.37, 0.82}, 5}, -- Uldum <--> Tanaris
{{210, 0.70, 0.22}, {8, 0.25, 0.66}, 5}, -- Uldum <--> Tanaris
{{35, 0.45, 0.85}, {169, 0.60, 0.09}, 5}, -- Silverpine <--> Ruins of Gilneas
-- Wrath instance entrances
@ -364,6 +364,13 @@ function load_graph_links()
coord[1] = 198
end
-- I hate Blizzard... They can't make up their mind weather we are on Uldum or Uldum_terrain1, but we only seem to be on one or the other.
if coord[1] == 164 and not QuestHelper_ZoneLookup[coord[1]] then
coord[1] = 210
elseif coord[1] == 210 and not QuestHelper_ZoneLookup[coord[1]] then
coord[1] = 164
end
-- I hate Blizzard... They can't make up their mind whether we are on LostIsles, LostIsles_terrain1 or LostIsles_terrain2, but we only seem to be on one.
-- Create a lookup table.