diff options
author | UbitUmarov | 2016-11-18 17:30:15 +0000 |
---|---|---|
committer | UbitUmarov | 2016-11-18 17:30:15 +0000 |
commit | 1396c466f65de8c1963282e7d59d3fb2acbbfe84 (patch) | |
tree | 63492018f4f19074f5efdc28c45fbbaba1ee2220 /OpenSim/Region | |
parent | add expire time for aliens (diff) | |
download | opensim-SC_OLD-1396c466f65de8c1963282e7d59d3fb2acbbfe84.zip opensim-SC_OLD-1396c466f65de8c1963282e7d59d3fb2acbbfe84.tar.gz opensim-SC_OLD-1396c466f65de8c1963282e7d59d3fb2acbbfe84.tar.bz2 opensim-SC_OLD-1396c466f65de8c1963282e7d59d3fb2acbbfe84.tar.xz |
search accout by id not volatil user name (HG)
Diffstat (limited to 'OpenSim/Region')
-rwxr-xr-x | OpenSim/Region/Framework/Scenes/Scene.cs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/OpenSim/Region/Framework/Scenes/Scene.cs b/OpenSim/Region/Framework/Scenes/Scene.cs index ca32940..c349369 100755 --- a/OpenSim/Region/Framework/Scenes/Scene.cs +++ b/OpenSim/Region/Framework/Scenes/Scene.cs | |||
@@ -4141,7 +4141,8 @@ namespace OpenSim.Region.Framework.Scenes | |||
4141 | { | 4141 | { |
4142 | IUserAccountCacheModule cache = RequestModuleInterface<IUserAccountCacheModule>(); | 4142 | IUserAccountCacheModule cache = RequestModuleInterface<IUserAccountCacheModule>(); |
4143 | if (cache != null) | 4143 | if (cache != null) |
4144 | cache.Remove(acd.firstname + " " + acd.lastname); | 4144 | // cache.Remove(acd.firstname + " " + acd.lastname); |
4145 | cache.Remove(acd.AgentID); | ||
4145 | 4146 | ||
4146 | // Remove any preexisting circuit - we don't want duplicates | 4147 | // Remove any preexisting circuit - we don't want duplicates |
4147 | // This is a stab at preventing avatar "ghosting" | 4148 | // This is a stab at preventing avatar "ghosting" |