diff options
author | Diva Canto | 2010-01-13 21:32:48 -0800 |
---|---|---|
committer | Diva Canto | 2010-01-13 21:32:48 -0800 |
commit | e90a5895ada61aab7fc27ab6f67b13a20676e07b (patch) | |
tree | 1413874b6f5e0129ed485ad2918f85da35793b02 /OpenSim/Server/Handlers/Simulation | |
parent | * Added the missing AvatarServices module. (diff) | |
download | opensim-SC_OLD-e90a5895ada61aab7fc27ab6f67b13a20676e07b.zip opensim-SC_OLD-e90a5895ada61aab7fc27ab6f67b13a20676e07b.tar.gz opensim-SC_OLD-e90a5895ada61aab7fc27ab6f67b13a20676e07b.tar.bz2 opensim-SC_OLD-e90a5895ada61aab7fc27ab6f67b13a20676e07b.tar.xz |
Bug fix in releasing agent. In Scene, always use SimulatonService, and not m_SimulationService, because it may be null...
Diffstat (limited to 'OpenSim/Server/Handlers/Simulation')
-rw-r--r-- | OpenSim/Server/Handlers/Simulation/AgentHandlers.cs | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/OpenSim/Server/Handlers/Simulation/AgentHandlers.cs b/OpenSim/Server/Handlers/Simulation/AgentHandlers.cs index da9c015..0c098d9 100644 --- a/OpenSim/Server/Handlers/Simulation/AgentHandlers.cs +++ b/OpenSim/Server/Handlers/Simulation/AgentHandlers.cs | |||
@@ -59,13 +59,13 @@ namespace OpenSim.Server.Handlers.Simulation | |||
59 | 59 | ||
60 | public Hashtable Handler(Hashtable request) | 60 | public Hashtable Handler(Hashtable request) |
61 | { | 61 | { |
62 | //m_log.Debug("[CONNECTION DEBUGGING]: AgentHandler Called"); | 62 | m_log.Debug("[CONNECTION DEBUGGING]: AgentHandler Called"); |
63 | 63 | ||
64 | //m_log.Debug("---------------------------"); | 64 | m_log.Debug("---------------------------"); |
65 | //m_log.Debug(" >> uri=" + request["uri"]); | 65 | m_log.Debug(" >> uri=" + request["uri"]); |
66 | //m_log.Debug(" >> content-type=" + request["content-type"]); | 66 | m_log.Debug(" >> content-type=" + request["content-type"]); |
67 | //m_log.Debug(" >> http-method=" + request["http-method"]); | 67 | m_log.Debug(" >> http-method=" + request["http-method"]); |
68 | //m_log.Debug("---------------------------\n"); | 68 | m_log.Debug("---------------------------\n"); |
69 | 69 | ||
70 | Hashtable responsedata = new Hashtable(); | 70 | Hashtable responsedata = new Hashtable(); |
71 | responsedata["content_type"] = "text/html"; | 71 | responsedata["content_type"] = "text/html"; |
@@ -307,7 +307,7 @@ namespace OpenSim.Server.Handlers.Simulation | |||
307 | 307 | ||
308 | protected virtual void DoAgentDelete(Hashtable request, Hashtable responsedata, UUID id, string action, UUID regionID) | 308 | protected virtual void DoAgentDelete(Hashtable request, Hashtable responsedata, UUID id, string action, UUID regionID) |
309 | { | 309 | { |
310 | //m_log.Debug(" >>> DoDelete action:" + action + "; regionHandle:" + regionHandle); | 310 | m_log.Debug(" >>> DoDelete action:" + action + "; RegionID:" + regionID); |
311 | 311 | ||
312 | GridRegion destination = new GridRegion(); | 312 | GridRegion destination = new GridRegion(); |
313 | destination.RegionID = regionID; | 313 | destination.RegionID = regionID; |