aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Environment/Scenes
diff options
context:
space:
mode:
authorSean Dague2007-07-31 14:42:50 +0000
committerSean Dague2007-07-31 14:42:50 +0000
commit55b569069dfd6eb7c87d4fbd66d68083878f6c65 (patch)
tree55863a76a9c4797ee8d9fa954868e1d650e0d7be /OpenSim/Region/Environment/Scenes
parent* Fixed a bug where the simulator could crash if the userserver was particula... (diff)
downloadopensim-SC_OLD-55b569069dfd6eb7c87d4fbd66d68083878f6c65.zip
opensim-SC_OLD-55b569069dfd6eb7c87d4fbd66d68083878f6c65.tar.gz
opensim-SC_OLD-55b569069dfd6eb7c87d4fbd66d68083878f6c65.tar.bz2
opensim-SC_OLD-55b569069dfd6eb7c87d4fbd66d68083878f6c65.tar.xz
clear userAgent state on client shutdown, which fixes the issue
where you could only login once with a given id in standalone mode.
Diffstat (limited to 'OpenSim/Region/Environment/Scenes')
-rw-r--r--OpenSim/Region/Environment/Scenes/Scene.cs4
1 files changed, 3 insertions, 1 deletions
diff --git a/OpenSim/Region/Environment/Scenes/Scene.cs b/OpenSim/Region/Environment/Scenes/Scene.cs
index 70aead3..dbc6f92 100644
--- a/OpenSim/Region/Environment/Scenes/Scene.cs
+++ b/OpenSim/Region/Environment/Scenes/Scene.cs
@@ -674,7 +674,9 @@ namespace OpenSim.Region.Environment.Scenes
674 } 674 }
675 } 675 }
676 // TODO: Add the removal from physics ? 676 // TODO: Add the removal from physics ?
677 677
678 // Remove client agent from profile, so new logins will work
679 commsManager.UserServer.clearUserAgent(agentID);
678 680
679 return; 681 return;
680 } 682 }