diff --git a/OpenSim/Framework/Constants.cs b/OpenSim/Framework/Constants.cs index 64912b4e9e..b2871ec36c 100644 --- a/OpenSim/Framework/Constants.cs +++ b/OpenSim/Framework/Constants.cs @@ -25,6 +25,7 @@ * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ using System; +using OpenMetaverse; namespace OpenSim.Framework { @@ -47,6 +48,9 @@ namespace OpenSim.Framework public const string DefaultTexture = "89556747-24cb-43ed-920b-47caed15465f"; + public static readonly UUID m_MrOpenSimID = new UUID("11111111-1111-0000-0000-000100bba000"); + public static readonly DateTime m_MrOpenSimBorn = new DateTime(2007, 1, 1, 0, 0, 0, DateTimeKind.Utc); + public enum EstateAccessCodex : uint { AllowedAccess = 1, diff --git a/OpenSim/Region/CoreModules/ServiceConnectorsIn/UserProfiles/LocalUserProfilesServiceConnector.cs b/OpenSim/Region/CoreModules/ServiceConnectorsIn/UserProfiles/LocalUserProfilesServiceConnector.cs index e6da6c3c31..fec58256f5 100644 --- a/OpenSim/Region/CoreModules/ServiceConnectorsIn/UserProfiles/LocalUserProfilesServiceConnector.cs +++ b/OpenSim/Region/CoreModules/ServiceConnectorsIn/UserProfiles/LocalUserProfilesServiceConnector.cs @@ -116,8 +116,7 @@ namespace OpenSim.Region.CoreModules.ServiceConnectorsOut.Profile Enabled = true; - string serviceDll = config.GetString("LocalServiceModule", - String.Empty); + string serviceDll = config.GetString("LocalServiceModule", String.Empty); if (serviceDll == String.Empty) { @@ -126,9 +125,7 @@ namespace OpenSim.Region.CoreModules.ServiceConnectorsOut.Profile } Object[] args = new Object[] { source, ConfigName }; - ServiceModule = - ServerUtils.LoadPlugin(serviceDll, - args); + ServiceModule = ServerUtils.LoadPlugin(serviceDll, args); if (ServiceModule == null) {