define Mr Opensim data on Constants

master
UbitUmarov 2020-03-06 16:00:40 +00:00
parent abe26f39f6
commit 38b93a0f50
2 changed files with 6 additions and 5 deletions

View File

@ -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,

View File

@ -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)
{