aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ClientStack/PacketServer.cs
diff options
context:
space:
mode:
authorlbsa712007-08-06 13:40:45 +0000
committerlbsa712007-08-06 13:40:45 +0000
commit07b011af3aef4455ad183bf00d3eccb4ba7e69dc (patch)
treeb62b36f38025fdf95c7b097e125a19c0411ecac7 /OpenSim/Region/ClientStack/PacketServer.cs
parent* The empty Regions dir now back in svn (diff)
downloadopensim-SC_OLD-07b011af3aef4455ad183bf00d3eccb4ba7e69dc.zip
opensim-SC_OLD-07b011af3aef4455ad183bf00d3eccb4ba7e69dc.tar.gz
opensim-SC_OLD-07b011af3aef4455ad183bf00d3eccb4ba7e69dc.tar.bz2
opensim-SC_OLD-07b011af3aef4455ad183bf00d3eccb4ba7e69dc.tar.xz
* renamed some scene to world
* passing on NotImplemented from Update()
Diffstat (limited to '')
-rw-r--r--OpenSim/Region/ClientStack/PacketServer.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Region/ClientStack/PacketServer.cs b/OpenSim/Region/ClientStack/PacketServer.cs
index 9d2250e..24bcfb1 100644
--- a/OpenSim/Region/ClientStack/PacketServer.cs
+++ b/OpenSim/Region/ClientStack/PacketServer.cs
@@ -122,9 +122,9 @@ namespace OpenSim.Region.ClientStack
122 122
123 } 123 }
124 124
125 protected virtual ClientView CreateNewClient(EndPoint remoteEP, UseCircuitCodePacket initialcirpack, Dictionary<uint, ClientView> clientThreads, IScene world, AssetCache assetCache, PacketServer packServer, InventoryCache inventoryCache, AgentCircuitManager authenSessions) 125 protected virtual ClientView CreateNewClient(EndPoint remoteEP, UseCircuitCodePacket initialcirpack, Dictionary<uint, ClientView> clientThreads, IScene scene, AssetCache assetCache, PacketServer packServer, InventoryCache inventoryCache, AgentCircuitManager authenSessions)
126 { 126 {
127 return new ClientView(remoteEP, initialcirpack, clientThreads, world, assetCache, packServer, inventoryCache, authenSessions ); 127 return new ClientView(remoteEP, initialcirpack, clientThreads, scene, assetCache, packServer, inventoryCache, authenSessions );
128 } 128 }
129 129
130 /// <summary> 130 /// <summary>