diff --git a/OpenSim/Region/Communications/Local/LocalLoginService.cs b/OpenSim/Region/Communications/Local/LocalLoginService.cs index d3b76de346..c4616613ff 100644 --- a/OpenSim/Region/Communications/Local/LocalLoginService.cs +++ b/OpenSim/Region/Communications/Local/LocalLoginService.cs @@ -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; }