1
0
Bifurcation 0

Addressed issue 538 and issue 539.

Cette révision appartient à :
Nathanial.C.Jones 2012-09-27 10:09:24 +00:00
Parent da3908b13d
révision e11ba409a8
2 fichiers modifiés avec 3 ajouts et 3 suppressions

Voir le fichier

@ -164,7 +164,7 @@ dodads_triangles.lua
core.lua
# beep beep
radar.lua
#-radar.lua
#-upgrade.lua

Voir le fichier

@ -255,7 +255,7 @@ QH_Event("ADDON_LOADED", function (addonid)
["core.lua"] = true,
["tooltip.lua"] = true,
["arrow.lua"] = true,
["radar.lua"] = true,
-- ["radar.lua"] = true,
["config.lua"] = true,
["collect.lua"] = true,
@ -926,7 +926,7 @@ Thanks for testing!]], "QuestHelper " .. version_string, 500, 20, 10)
local nc, nz, nx, ny = self.Astrolabe:GetCurrentPlayerPosition()
local tc, tx, ty
if nc and nc ~= -1 then -- We just want the raw data here, before we've done anything clever.
if nc and nc ~= -1 and nc ~= 6 then -- We just want the raw data here, before we've done anything clever.
tc, tx, ty = self.Astrolabe:GetAbsoluteContinentPosition(nc, nz, nx, ny)
QuestHelper: Assert(tc and tx and ty) -- is it true? nobody knows! :D
end