* Patch from ChrisDown to fix odd results when using landmarks. Thanks Chris! (Tweaked slightly so avatar don't end up underground).

* Removed some testing notices I had in there that were obnoxious.
This commit is contained in:
Teravus Ovares
2008-04-17 05:23:43 +00:00
parent 244bfcde5b
commit 75df0c9000
2 changed files with 3 additions and 3 deletions

View File

@@ -54,7 +54,7 @@ namespace OpenSim.Framework
string[] parts = temp.Split('\n');
int.TryParse(parts[0].Substring(17, 1), out Version);
LLUUID.TryParse(parts[1].Substring(10, 36), out RegionID);
LLVector3.TryParse(parts[2].Substring(11, parts[2].Length - 11), out Position);
LLVector3.TryParse(parts[2].Substring(10, parts[2].Length - 10), out Position);
ulong.TryParse(parts[3].Substring(14, parts[3].Length - 14), out RegionHandle);
}
}