diff options
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Framework/Util.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Framework/Util.cs b/OpenSim/Framework/Util.cs index bc35fa6..2a21221 100644 --- a/OpenSim/Framework/Util.cs +++ b/OpenSim/Framework/Util.cs | |||
@@ -716,7 +716,7 @@ namespace OpenSim.Framework | |||
716 | XmlRpcRequest client = new XmlRpcRequest(methodName, args); | 716 | XmlRpcRequest client = new XmlRpcRequest(methodName, args); |
717 | return client.Send(url, 6000); | 717 | return client.Send(url, 6000); |
718 | } | 718 | } |
719 | 719 | ||
720 | // used for RemoteParcelRequest (for "About Landmark") | 720 | // used for RemoteParcelRequest (for "About Landmark") |
721 | public static LLUUID BuildFakeParcelID(ulong regionHandle, uint x, uint y) { | 721 | public static LLUUID BuildFakeParcelID(ulong regionHandle, uint x, uint y) { |
722 | byte[] bytes = { | 722 | byte[] bytes = { |
@@ -726,7 +726,7 @@ namespace OpenSim.Framework | |||
726 | (byte)(y >> 24), (byte)(y >> 16), (byte)(y >> 8), (byte)y }; | 726 | (byte)(y >> 24), (byte)(y >> 16), (byte)(y >> 8), (byte)y }; |
727 | return new LLUUID(bytes, 0); | 727 | return new LLUUID(bytes, 0); |
728 | } | 728 | } |
729 | 729 | ||
730 | public static void ParseFakeParcelID(LLUUID parcelID, out ulong regionHandle, out uint x, out uint y) { | 730 | public static void ParseFakeParcelID(LLUUID parcelID, out ulong regionHandle, out uint x, out uint y) { |
731 | byte[] bytes = parcelID.GetBytes(); | 731 | byte[] bytes = parcelID.GetBytes(); |
732 | regionHandle = Helpers.BytesToUInt64(bytes); | 732 | regionHandle = Helpers.BytesToUInt64(bytes); |