diff options
author | MW | 2007-05-17 14:37:57 +0000 |
---|---|---|
committer | MW | 2007-05-17 14:37:57 +0000 |
commit | 915b8962a37b2dd0e5e75540862f5347c820b2dc (patch) | |
tree | 84040b06ec9a4273305234dcb1b21f2db36f8bf2 /OpenSim.RegionServer/AuthenticateSessionsBase.cs | |
parent | * minor rearrangement for clarity (diff) | |
download | opensim-SC_OLD-915b8962a37b2dd0e5e75540862f5347c820b2dc.zip opensim-SC_OLD-915b8962a37b2dd0e5e75540862f5347c820b2dc.tar.gz opensim-SC_OLD-915b8962a37b2dd0e5e75540862f5347c820b2dc.tar.bz2 opensim-SC_OLD-915b8962a37b2dd0e5e75540862f5347c820b2dc.tar.xz |
Hopefully everything is working again
Diffstat (limited to 'OpenSim.RegionServer/AuthenticateSessionsBase.cs')
-rw-r--r-- | OpenSim.RegionServer/AuthenticateSessionsBase.cs | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/OpenSim.RegionServer/AuthenticateSessionsBase.cs b/OpenSim.RegionServer/AuthenticateSessionsBase.cs index 1ff5a84..cf6a055 100644 --- a/OpenSim.RegionServer/AuthenticateSessionsBase.cs +++ b/OpenSim.RegionServer/AuthenticateSessionsBase.cs | |||
@@ -73,5 +73,15 @@ namespace OpenSim | |||
73 | } | 73 | } |
74 | return vec; | 74 | return vec; |
75 | } | 75 | } |
76 | |||
77 | public void UpdateAgentData(AgentCircuitData agentData) | ||
78 | { | ||
79 | if (this.AgentCircuits.ContainsKey((uint)agentData.circuitcode)) | ||
80 | { | ||
81 | this.AgentCircuits[(uint)agentData.circuitcode].firstname = agentData.firstname; | ||
82 | this.AgentCircuits[(uint)agentData.circuitcode].lastname = agentData.lastname; | ||
83 | this.AgentCircuits[(uint)agentData.circuitcode].startpos = agentData.startpos; | ||
84 | } | ||
85 | } | ||
76 | } | 86 | } |
77 | } | 87 | } |