diff options
author | MW | 2007-05-30 18:03:27 +0000 |
---|---|---|
committer | MW | 2007-05-30 18:03:27 +0000 |
commit | 6e1be3931592c8d45efac59580af6c5dd35c5426 (patch) | |
tree | c8277ffe12966bc8c9997b6471c5d81b8475689f /OpenSim/OpenSim.RegionServer/ClientView.cs | |
parent | Now We need to test to see if we can login (diff) | |
download | opensim-SC_OLD-6e1be3931592c8d45efac59580af6c5dd35c5426.zip opensim-SC_OLD-6e1be3931592c8d45efac59580af6c5dd35c5426.tar.gz opensim-SC_OLD-6e1be3931592c8d45efac59580af6c5dd35c5426.tar.bz2 opensim-SC_OLD-6e1be3931592c8d45efac59580af6c5dd35c5426.tar.xz |
trying to get login to work
Diffstat (limited to '')
-rw-r--r-- | OpenSim/OpenSim.RegionServer/ClientView.cs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/OpenSim/OpenSim.RegionServer/ClientView.cs b/OpenSim/OpenSim.RegionServer/ClientView.cs index 6963a0b..d7e681f 100644 --- a/OpenSim/OpenSim.RegionServer/ClientView.cs +++ b/OpenSim/OpenSim.RegionServer/ClientView.cs | |||
@@ -80,9 +80,9 @@ namespace OpenSim | |||
80 | protected AuthenticateSessionsBase m_authenticateSessionsHandler; | 80 | protected AuthenticateSessionsBase m_authenticateSessionsHandler; |
81 | 81 | ||
82 | 82 | ||
83 | public ClientView(EndPoint remoteEP, UseCircuitCodePacket initialcirpack, Dictionary<uint, ClientView> clientThreads, AssetCache assetCache, PacketServer packServer, InventoryCache inventoryCache, AuthenticateSessionsBase authenSessions) | 83 | public ClientView(EndPoint remoteEP, UseCircuitCodePacket initialcirpack, Dictionary<uint, ClientView> clientThreads, IWorld world, AssetCache assetCache, PacketServer packServer, InventoryCache inventoryCache, AuthenticateSessionsBase authenSessions) |
84 | { | 84 | { |
85 | 85 | m_world = world; | |
86 | m_clientThreads = clientThreads; | 86 | m_clientThreads = clientThreads; |
87 | m_assetCache = assetCache; | 87 | m_assetCache = assetCache; |
88 | 88 | ||
@@ -229,8 +229,8 @@ namespace OpenSim | |||
229 | 229 | ||
230 | protected virtual void InitNewClient() | 230 | protected virtual void InitNewClient() |
231 | { | 231 | { |
232 | OpenSim.Framework.Console.MainConsole.Instance.WriteLine(OpenSim.Framework.Console.LogPriority.LOW, "OpenSimClient.cs:InitNewClient() - Adding viewer agent to world"); | 232 | OpenSim.Framework.Console.MainConsole.Instance.WriteLine(OpenSim.Framework.Console.LogPriority.LOW, "OpenSimClient.cs:InitNewClient() - Adding viewer agent to world"); |
233 | OnNewAvatar(this, this.AgentID, this.m_child); | 233 | this.m_world.AddNewAvatar(this, this.AgentID, false); |
234 | } | 234 | } |
235 | 235 | ||
236 | protected virtual void AuthUser() | 236 | protected virtual void AuthUser() |