aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/OpenSim.RegionServer/PacketServer.cs
diff options
context:
space:
mode:
authorMW2007-05-30 18:03:27 +0000
committerMW2007-05-30 18:03:27 +0000
commit6e1be3931592c8d45efac59580af6c5dd35c5426 (patch)
treec8277ffe12966bc8c9997b6471c5d81b8475689f /OpenSim/OpenSim.RegionServer/PacketServer.cs
parentNow We need to test to see if we can login (diff)
downloadopensim-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 'OpenSim/OpenSim.RegionServer/PacketServer.cs')
-rw-r--r--OpenSim/OpenSim.RegionServer/PacketServer.cs2
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