aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/OpenSim.RegionServer/Client/ClientView.ProcessPackets.cs
diff options
context:
space:
mode:
authormingchen2007-06-07 14:23:19 +0000
committermingchen2007-06-07 14:23:19 +0000
commitf88a4777f9e9b23795aed5a7f364a93a73e9ed15 (patch)
tree7acf567aed35932ae0bcc5410698379bbb6087c0 /OpenSim/OpenSim.RegionServer/Client/ClientView.ProcessPackets.cs
parent*When avatar crosses parcel, it updates successfully in the viewer (diff)
downloadopensim-SC_OLD-f88a4777f9e9b23795aed5a7f364a93a73e9ed15.zip
opensim-SC_OLD-f88a4777f9e9b23795aed5a7f364a93a73e9ed15.tar.gz
opensim-SC_OLD-f88a4777f9e9b23795aed5a7f364a93a73e9ed15.tar.bz2
opensim-SC_OLD-f88a4777f9e9b23795aed5a7f364a93a73e9ed15.tar.xz
*Cleaned up namespaces, filenames, etc in OpenSim.RegionServer
NOTES: *ClientView is now in the namespace OpenSim.RegionServer.Client *Scripting is now in the namespace OpenSim.RegionServer.scripting *Other various cleaning
Diffstat (limited to '')
-rw-r--r--OpenSim/OpenSim.RegionServer/Client/ClientView.ProcessPackets.cs (renamed from OpenSim/OpenSim.RegionServer/ClientView.ProcessPackets.cs)10
1 files changed, 5 insertions, 5 deletions
diff --git a/OpenSim/OpenSim.RegionServer/ClientView.ProcessPackets.cs b/OpenSim/OpenSim.RegionServer/Client/ClientView.ProcessPackets.cs
index e3d875f..b07749e 100644
--- a/OpenSim/OpenSim.RegionServer/ClientView.ProcessPackets.cs
+++ b/OpenSim/OpenSim.RegionServer/Client/ClientView.ProcessPackets.cs
@@ -40,12 +40,11 @@ using OpenSim.Framework.Interfaces;
40using OpenSim.Framework.Types; 40using OpenSim.Framework.Types;
41using OpenSim.Framework.Inventory; 41using OpenSim.Framework.Inventory;
42using OpenSim.Framework.Utilities; 42using OpenSim.Framework.Utilities;
43using OpenSim.world; 43using OpenSim.RegionServer.Simulator;
44using OpenSim.RegionServer.world; 44using OpenSim.RegionServer.Assets;
45using OpenSim.Assets;
46using OpenSim.Framework.Console; 45using OpenSim.Framework.Console;
47 46
48namespace OpenSim 47namespace OpenSim.RegionServer.Client
49{ 48{
50 public partial class ClientView 49 public partial class ClientView
51 { 50 {
@@ -92,6 +91,7 @@ namespace OpenSim
92 protected override void ProcessInPacket(Packet Pack) 91 protected override void ProcessInPacket(Packet Pack)
93 { 92 {
94 ack_pack(Pack); 93 ack_pack(Pack);
94 debug = true;
95 if (debug) 95 if (debug)
96 { 96 {
97 if (Pack.Type != PacketType.AgentUpdate) 97 if (Pack.Type != PacketType.AgentUpdate)
@@ -361,7 +361,7 @@ namespace OpenSim
361 { 361 {
362 if (ent.localid == updatetask.UpdateData.LocalID) 362 if (ent.localid == updatetask.UpdateData.LocalID)
363 { 363 {
364 if (ent is OpenSim.world.Primitive) 364 if (ent is OpenSim.RegionServer.Simulator.Primitive)
365 { 365 {
366 this.m_world.AddScript(ent, Util.FieldToString(assBase.Data)); 366 this.m_world.AddScript(ent, Util.FieldToString(assBase.Data));
367 } 367 }