diff options
Diffstat (limited to 'OpenSim/ApplicationPlugins/Rest/Regions/POSTHandler.cs')
-rw-r--r-- | OpenSim/ApplicationPlugins/Rest/Regions/POSTHandler.cs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/OpenSim/ApplicationPlugins/Rest/Regions/POSTHandler.cs b/OpenSim/ApplicationPlugins/Rest/Regions/POSTHandler.cs index 6e3d1ff..73a1b9b 100644 --- a/OpenSim/ApplicationPlugins/Rest/Regions/POSTHandler.cs +++ b/OpenSim/ApplicationPlugins/Rest/Regions/POSTHandler.cs | |||
@@ -36,7 +36,7 @@ using System.Text.RegularExpressions; | |||
36 | using System.Timers; | 36 | using System.Timers; |
37 | using System.Xml; | 37 | using System.Xml; |
38 | using System.Xml.Serialization; | 38 | using System.Xml.Serialization; |
39 | using libsecondlife; | 39 | using OpenMetaverse; |
40 | using Mono.Addins; | 40 | using Mono.Addins; |
41 | using Nwc.XmlRpc; | 41 | using Nwc.XmlRpc; |
42 | using Nini.Config; | 42 | using Nini.Config; |
@@ -76,10 +76,10 @@ namespace OpenSim.ApplicationPlugins.Rest.Regions | |||
76 | // Parse region ID and other parameters | 76 | // Parse region ID and other parameters |
77 | param = param.TrimEnd(new char[]{'/'}); | 77 | param = param.TrimEnd(new char[]{'/'}); |
78 | string[] comps = param.Split('/'); | 78 | string[] comps = param.Split('/'); |
79 | LLUUID regionID = (LLUUID)comps[0]; | 79 | UUID regionID = (UUID)comps[0]; |
80 | 80 | ||
81 | m_log.DebugFormat("{0} POST region UUID {1}", MsgID, regionID.ToString()); | 81 | m_log.DebugFormat("{0} POST region UUID {1}", MsgID, regionID.ToString()); |
82 | if (LLUUID.Zero == regionID) throw new Exception("missing region ID"); | 82 | if (UUID.Zero == regionID) throw new Exception("missing region ID"); |
83 | 83 | ||
84 | Scene scene = null; | 84 | Scene scene = null; |
85 | App.SceneManager.TryGetScene(regionID, out scene); | 85 | App.SceneManager.TryGetScene(regionID, out scene); |