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

afrisby
MW 2007-08-24 20:58:24 +00:00
parent 2ca00ba47e
commit e53ba00212
1 changed files with 4 additions and 0 deletions

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;
}