From a390a6af339ff3d75b173ce007d3c44c224a466f Mon Sep 17 00:00:00 2001 From: "Nathanial.C.Jones" Date: Sat, 19 Feb 2011 13:40:08 +0000 Subject: [PATCH] Added a 30 second busy wait to the initialization. --- QuestHelper/main.lua | 2 ++ QuestHelper/upgrade.lua | 2 ++ 2 files changed, 4 insertions(+) diff --git a/QuestHelper/main.lua b/QuestHelper/main.lua index 8f84b59..60e4332 100644 --- a/QuestHelper/main.lua +++ b/QuestHelper/main.lua @@ -422,6 +422,8 @@ QH_Event("ADDON_LOADED", function (addonid) -- This is where the slow stuff goes -- 4.0.3a Breakage related + local datime = time() + 30 -- We're gonna wait 30 seconds, just in case. + while datime >= time() do --[[sleep (busy wait)]] end QuestHelper_BuildZoneLookup() QH_Graph_Init() load_graph_links() diff --git a/QuestHelper/upgrade.lua b/QuestHelper/upgrade.lua index 8d103e0..8ad8414 100644 --- a/QuestHelper/upgrade.lua +++ b/QuestHelper/upgrade.lua @@ -166,6 +166,7 @@ QuestHelper_Zones = [-117]={[0]="TheForgeofSouls_Continent", [1]="TheForgeofSouls"}, [-118]={[0]="PitofSaron_Continent", [1]="PitofSaron"}, + [-119]={[0]="DeeprunTram_Continent", [1]="DeeprunTram"}, } @@ -338,6 +339,7 @@ QuestHelper_IndexLookup = ["PitofSaron_Continent"] = {156, -118, 0}, ["PitofSaron"] = {157, -118, 1}, ["GilneasCity_Continent"] = {204, -78, 0}, ["GilneasCity"] = {205, -78, 1}, ["GilneasZone_Continent"] = {206, -79, 0}, ["GilneasZone"] = {207, -79, 1}, + ["DeeprunTram_Continent"] = {208, -119, 0}, ["DeeprunTram"] = {209, -119, 1},