define Mr Opensim data on Constants
parent
abe26f39f6
commit
38b93a0f50
|
@ -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)
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue