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.Servers | |
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.Servers')
-rw-r--r-- | Common/OpenSim.Servers/LocalUserProfileManager.cs | 2 | ||||
-rw-r--r-- | Common/OpenSim.Servers/LoginServer.cs | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Common/OpenSim.Servers/LocalUserProfileManager.cs b/Common/OpenSim.Servers/LocalUserProfileManager.cs index acfa211..6f65176 100644 --- a/Common/OpenSim.Servers/LocalUserProfileManager.cs +++ b/Common/OpenSim.Servers/LocalUserProfileManager.cs | |||
@@ -64,7 +64,7 @@ namespace OpenSim.UserServer | |||
64 | 64 | ||
65 | public override void InitUserProfiles() | 65 | public override void InitUserProfiles() |
66 | { | 66 | { |
67 | // TODO: need to load from database | 67 | base.InitUserProfiles(); |
68 | } | 68 | } |
69 | 69 | ||
70 | public override void CustomiseResponse(ref System.Collections.Hashtable response, UserProfile theUser) | 70 | public override void CustomiseResponse(ref System.Collections.Hashtable response, UserProfile theUser) |
diff --git a/Common/OpenSim.Servers/LoginServer.cs b/Common/OpenSim.Servers/LoginServer.cs index bf98fbb..3d4b955 100644 --- a/Common/OpenSim.Servers/LoginServer.cs +++ b/Common/OpenSim.Servers/LoginServer.cs | |||
@@ -98,7 +98,7 @@ namespace OpenSim.UserServer | |||
98 | this._mpasswd = EncodePassword("testpass"); | 98 | this._mpasswd = EncodePassword("testpass"); |
99 | 99 | ||
100 | userManager = new LocalUserProfileManager(this.m_gridServer, m_simPort, m_simAddr, regionX, regionY); | 100 | userManager = new LocalUserProfileManager(this.m_gridServer, m_simPort, m_simAddr, regionX, regionY); |
101 | //userManager.InitUserProfiles(); | 101 | userManager.InitUserProfiles(); |
102 | userManager.SetKeys("", "", "", "Welcome to OpenSim"); | 102 | userManager.SetKeys("", "", "", "Welcome to OpenSim"); |
103 | } | 103 | } |
104 | 104 | ||