aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Communications
diff options
context:
space:
mode:
authorMW2007-08-24 20:58:24 +0000
committerMW2007-08-24 20:58:24 +0000
commite53ba002120f35c7181b638422861e79c4902b4d (patch)
tree8d7e10c5357675200fbbe30f5d37c60dfc286ba0 /OpenSim/Region/Communications
parentadd some better verbose statements to get a better feel for what is going (diff)
downloadopensim-SC_OLD-e53ba002120f35c7181b638422861e79c4902b4d.zip
opensim-SC_OLD-e53ba002120f35c7181b638422861e79c4902b4d.tar.gz
opensim-SC_OLD-e53ba002120f35c7181b638422861e79c4902b4d.tar.bz2
opensim-SC_OLD-e53ba002120f35c7181b638422861e79c4902b4d.tar.xz
Now also enabled Inventory persistence in standalone mode when account Authentication is turned off.
Diffstat (limited to 'OpenSim/Region/Communications')
-rw-r--r--OpenSim/Region/Communications/Local/LocalLoginService.cs4
1 files changed, 4 insertions, 0 deletions
diff --git a/OpenSim/Region/Communications/Local/LocalLoginService.cs b/OpenSim/Region/Communications/Local/LocalLoginService.cs
index d3b76de..c461661 100644
--- a/OpenSim/Region/Communications/Local/LocalLoginService.cs
+++ b/OpenSim/Region/Communications/Local/LocalLoginService.cs
@@ -47,6 +47,10 @@ namespace OpenSim.Region.Communications.Local
47 this.m_userManager.AddUserProfile(firstname, lastname, "test", defaultHomeX, defaultHomeY); 47 this.m_userManager.AddUserProfile(firstname, lastname, "test", defaultHomeX, defaultHomeY);
48 48
49 profile = this.m_userManager.getUserProfile(firstname, lastname); 49 profile = this.m_userManager.getUserProfile(firstname, lastname);
50 if (profile != null)
51 {
52 m_Parent.InvenServices.CreateNewUserInventory(profile.UUID);
53 }
50 54
51 return profile; 55 return profile;
52 } 56 }