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/PacketServer.cs | |
parent | Now We need to test to see if we can login (diff) | |
download | opensim-SC-6e1be3931592c8d45efac59580af6c5dd35c5426.zip opensim-SC-6e1be3931592c8d45efac59580af6c5dd35c5426.tar.gz opensim-SC-6e1be3931592c8d45efac59580af6c5dd35c5426.tar.bz2 opensim-SC-6e1be3931592c8d45efac59580af6c5dd35c5426.tar.xz |
trying to get login to work
Diffstat (limited to 'OpenSim/OpenSim.RegionServer/PacketServer.cs')
-rw-r--r-- | OpenSim/OpenSim.RegionServer/PacketServer.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/OpenSim.RegionServer/PacketServer.cs b/OpenSim/OpenSim.RegionServer/PacketServer.cs index dd8de4c..d40de47 100644 --- a/OpenSim/OpenSim.RegionServer/PacketServer.cs +++ b/OpenSim/OpenSim.RegionServer/PacketServer.cs | |||
@@ -65,7 +65,7 @@ namespace OpenSim | |||
65 | 65 | ||
66 | public virtual bool AddNewClient(EndPoint epSender, UseCircuitCodePacket useCircuit, AssetCache assetCache, InventoryCache inventoryCache, AuthenticateSessionsBase authenticateSessionsClass) | 66 | public virtual bool AddNewClient(EndPoint epSender, UseCircuitCodePacket useCircuit, AssetCache assetCache, InventoryCache inventoryCache, AuthenticateSessionsBase authenticateSessionsClass) |
67 | { | 67 | { |
68 | ClientView newuser = new ClientView(epSender, useCircuit, this.ClientThreads, assetCache, this, inventoryCache, authenticateSessionsClass); | 68 | ClientView newuser = new ClientView(epSender, useCircuit, this.ClientThreads, this._localWorld, assetCache, this, inventoryCache, authenticateSessionsClass); |
69 | this.ClientThreads.Add(useCircuit.CircuitCode.Code, newuser); | 69 | this.ClientThreads.Add(useCircuit.CircuitCode.Code, newuser); |
70 | this.ClientAPIs.Add(useCircuit.CircuitCode.Code, (IClientAPI)newuser); | 70 | this.ClientAPIs.Add(useCircuit.CircuitCode.Code, (IClientAPI)newuser); |
71 | 71 | ||