mirror of
https://github.com/opensim/opensim.git
synced 2026-08-11 03:45:35 +08:00
define Mr Opensim data on Constants
This commit is contained in:
@@ -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,
|
||||
|
||||
@@ -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<IUserProfilesService>(serviceDll,
|
||||
args);
|
||||
ServiceModule = ServerUtils.LoadPlugin<IUserProfilesService>(serviceDll, args);
|
||||
|
||||
if (ServiceModule == null)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user