diff options
Diffstat (limited to '')
-rw-r--r-- | OpenSim-Source/OpenSim.RegionServer/ClientView.cs (renamed from OpenSim.RegionServer/ClientView.cs) | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/OpenSim.RegionServer/ClientView.cs b/OpenSim-Source/OpenSim.RegionServer/ClientView.cs index ccea2f3..e66b830 100644 --- a/OpenSim.RegionServer/ClientView.cs +++ b/OpenSim-Source/OpenSim.RegionServer/ClientView.cs | |||
@@ -50,7 +50,7 @@ namespace OpenSim | |||
50 | /// Handles new client connections | 50 | /// Handles new client connections |
51 | /// Constructor takes a single Packet and authenticates everything | 51 | /// Constructor takes a single Packet and authenticates everything |
52 | /// </summary> | 52 | /// </summary> |
53 | public partial class ClientView : ClientViewBase | 53 | public partial class ClientView : ClientViewBase, IClientAPI |
54 | { | 54 | { |
55 | protected static Dictionary<PacketType, PacketMethod> PacketHandlers = new Dictionary<PacketType, PacketMethod>(); //Global/static handlers for all clients | 55 | protected static Dictionary<PacketType, PacketMethod> PacketHandlers = new Dictionary<PacketType, PacketMethod>(); //Global/static handlers for all clients |
56 | protected Dictionary<PacketType, PacketMethod> m_packetHandlers = new Dictionary<PacketType, PacketMethod>(); //local handlers for this instance | 56 | protected Dictionary<PacketType, PacketMethod> m_packetHandlers = new Dictionary<PacketType, PacketMethod>(); //local handlers for this instance |
@@ -138,7 +138,6 @@ namespace OpenSim | |||
138 | { | 138 | { |
139 | this.startpos = m_authenticateSessionsHandler.GetPosition(CircuitCode); | 139 | this.startpos = m_authenticateSessionsHandler.GetPosition(CircuitCode); |
140 | m_authenticateSessionsHandler.UpdateAgentChildStatus(CircuitCode, false); | 140 | m_authenticateSessionsHandler.UpdateAgentChildStatus(CircuitCode, false); |
141 | //Console.WriteLine("upgrade start pos is " + this.startpos.X + " , " + this.startpos.Y + " , " + this.startpos.Z); | ||
142 | } | 141 | } |
143 | this.InitNewClient(); | 142 | this.InitNewClient(); |
144 | } | 143 | } |