diff options
author | lbsa71 | 2007-09-24 23:58:43 +0000 |
---|---|---|
committer | lbsa71 | 2007-09-24 23:58:43 +0000 |
commit | 3ac43d012031cae8189111d96b7350b3e931836c (patch) | |
tree | 98d1f6f0f97f02ab060434b369065d14d2ba1cbb /OpenSim/Region/Communications/Local/LocalBackEndServices.cs | |
parent | * Added time dilation property to Scene (diff) | |
download | opensim-SC_OLD-3ac43d012031cae8189111d96b7350b3e931836c.zip opensim-SC_OLD-3ac43d012031cae8189111d96b7350b3e931836c.tar.gz opensim-SC_OLD-3ac43d012031cae8189111d96b7350b3e931836c.tar.bz2 opensim-SC_OLD-3ac43d012031cae8189111d96b7350b3e931836c.tar.xz |
* Removed some more fields from CommunicationsLocal
* added OnLoginToRegion to CommunicationsLocal
Diffstat (limited to 'OpenSim/Region/Communications/Local/LocalBackEndServices.cs')
-rw-r--r-- | OpenSim/Region/Communications/Local/LocalBackEndServices.cs | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/OpenSim/Region/Communications/Local/LocalBackEndServices.cs b/OpenSim/Region/Communications/Local/LocalBackEndServices.cs index 706be09..3e23963 100644 --- a/OpenSim/Region/Communications/Local/LocalBackEndServices.cs +++ b/OpenSim/Region/Communications/Local/LocalBackEndServices.cs | |||
@@ -187,7 +187,7 @@ namespace OpenSim.Region.Communications.Local | |||
187 | /// <param name="regionHandle"></param> | 187 | /// <param name="regionHandle"></param> |
188 | /// <param name="loginData"></param> | 188 | /// <param name="loginData"></param> |
189 | /// <returns></returns> | 189 | /// <returns></returns> |
190 | public bool AddNewSession(ulong regionHandle, Login loginData) | 190 | public void AddNewSession(ulong regionHandle, Login loginData) |
191 | { | 191 | { |
192 | AgentCircuitData agent = new AgentCircuitData(); | 192 | AgentCircuitData agent = new AgentCircuitData(); |
193 | agent.AgentID = loginData.Agent; | 193 | agent.AgentID = loginData.Agent; |
@@ -204,11 +204,7 @@ namespace OpenSim.Region.Communications.Local | |||
204 | if (this.regionHosts.ContainsKey(regionHandle)) | 204 | if (this.regionHosts.ContainsKey(regionHandle)) |
205 | { | 205 | { |
206 | this.regionHosts[regionHandle].TriggerExpectUser(regionHandle, agent); | 206 | this.regionHosts[regionHandle].TriggerExpectUser(regionHandle, agent); |
207 | return true; | ||
208 | } | 207 | } |
209 | |||
210 | // region not found | ||
211 | return false; | ||
212 | } | 208 | } |
213 | } | 209 | } |
214 | } | 210 | } |