Now also enabled Inventory persistence in standalone mode when account Authentication is turned off.

This commit is contained in:
MW
2007-08-24 20:58:24 +00:00
parent 2ca00ba47e
commit e53ba00212

View File

@@ -47,6 +47,10 @@ namespace OpenSim.Region.Communications.Local
this.m_userManager.AddUserProfile(firstname, lastname, "test", defaultHomeX, defaultHomeY);
profile = this.m_userManager.getUserProfile(firstname, lastname);
if (profile != null)
{
m_Parent.InvenServices.CreateNewUserInventory(profile.UUID);
}
return profile;
}