diff options
author | mingchen | 2007-06-06 03:00:59 +0000 |
---|---|---|
committer | mingchen | 2007-06-06 03:00:59 +0000 |
commit | ea798195758a6692b583930e5846c643157143be (patch) | |
tree | 50ac10b862332a622dc50c991591cc65c084d9b5 /Common/OpenSim.Framework/UserProfileManagerBase.cs | |
parent | Unhippos! (diff) | |
download | opensim-SC_OLD-ea798195758a6692b583930e5846c643157143be.zip opensim-SC_OLD-ea798195758a6692b583930e5846c643157143be.tar.gz opensim-SC_OLD-ea798195758a6692b583930e5846c643157143be.tar.bz2 opensim-SC_OLD-ea798195758a6692b583930e5846c643157143be.tar.xz |
Changes:
*Added support for Subdivision (use master avatar to login to try out)
*Added Parcel Border support
*Enabled user account storage, but only when a new account is created
Bug Fixes:
*Fixed crash on startup while in sandbox when "Setting up master avatar"
*Fixed most core functions in ParcelManager and Parcel that where broken
*Fixed Parcel saving to database
Known Issues:
*Dividing parcel fails in viewer (gives an error about needing 2 parcels)
Diffstat (limited to 'Common/OpenSim.Framework/UserProfileManagerBase.cs')
-rw-r--r-- | Common/OpenSim.Framework/UserProfileManagerBase.cs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Common/OpenSim.Framework/UserProfileManagerBase.cs b/Common/OpenSim.Framework/UserProfileManagerBase.cs index 6c80611..e0c0174 100644 --- a/Common/OpenSim.Framework/UserProfileManagerBase.cs +++ b/Common/OpenSim.Framework/UserProfileManagerBase.cs | |||
@@ -133,6 +133,7 @@ namespace OpenSim.Framework.User | |||
133 | newprofile.UUID = LLUUID.Random(); | 133 | newprofile.UUID = LLUUID.Random(); |
134 | newprofile.Inventory.CreateRootFolder(newprofile.UUID, true); | 134 | newprofile.Inventory.CreateRootFolder(newprofile.UUID, true); |
135 | this.UserProfiles.Add(newprofile.UUID, newprofile); | 135 | this.UserProfiles.Add(newprofile.UUID, newprofile); |
136 | SaveUserProfiles(); | ||
136 | return newprofile; | 137 | return newprofile; |
137 | } | 138 | } |
138 | 139 | ||