1
0
Bifurcation 0

Fixed an issue where the landing coordinates were being put in the wrong location. It was putting the landing coordinates outside of the appropriate home subtable, resulting in only one set of coordinates.

Cette révision appartient à :
Nathanial.C.Jones 2011-06-19 02:33:02 +00:00
Parent 8e2a97167a
révision 374eeaccff
1 fichiers modifiés avec 1 ajouts et 1 suppressions

Voir le fichier

@ -17,7 +17,7 @@ local function OnZoneChanged()
last_hearth = start
local home = GetBindLocation()
if not QHCZ[home] then QHCZ[home] = {} end
QHCZ.Landing = GetLoc()
QHCZ[home].Landing = GetLoc()
end
end