From 7c1f17b994ca987df2167101054f523cc33d7fb9 Mon Sep 17 00:00:00 2001 From: Teravus Ovares Date: Wed, 16 Apr 2008 14:10:54 +0000 Subject: * Applying melanie's Landmark patch. Thanks Melanie! * To make a landmark, you currently have to enable admin options in the advanced menu first. We're working on this.. however use the admin options solution in the mean time. --- OpenSim/Framework/AssetLandmark.cs | 2 ++ 1 file changed, 2 insertions(+) (limited to 'OpenSim/Framework/AssetLandmark.cs') diff --git a/OpenSim/Framework/AssetLandmark.cs b/OpenSim/Framework/AssetLandmark.cs index fe6f835..e0f5415 100644 --- a/OpenSim/Framework/AssetLandmark.cs +++ b/OpenSim/Framework/AssetLandmark.cs @@ -35,6 +35,7 @@ namespace OpenSim.Framework public int Version; public LLVector3 Position; public LLUUID RegionID; + public ulong RegionHandle; public AssetLandmark(AssetBase a) { @@ -54,6 +55,7 @@ namespace OpenSim.Framework 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); + ulong.TryParse(parts[3].Substring(14, parts[3].Length - 14), out RegionHandle); } } } -- cgit v1.1