diff options
author | MW | 2007-05-29 17:49:39 +0000 |
---|---|---|
committer | MW | 2007-05-29 17:49:39 +0000 |
commit | cb33169fe6836bb3d5b300a01d12f78246a45780 (patch) | |
tree | 4b45e8f5da2c777846aa3b2e47d04d5a8b6cd605 /OpenSim/OpenSim.World/World.cs | |
parent | (no commit message) (diff) | |
download | opensim-SC_OLD-cb33169fe6836bb3d5b300a01d12f78246a45780.zip opensim-SC_OLD-cb33169fe6836bb3d5b300a01d12f78246a45780.tar.gz opensim-SC_OLD-cb33169fe6836bb3d5b300a01d12f78246a45780.tar.bz2 opensim-SC_OLD-cb33169fe6836bb3d5b300a01d12f78246a45780.tar.xz |
Diffstat (limited to 'OpenSim/OpenSim.World/World.cs')
-rw-r--r-- | OpenSim/OpenSim.World/World.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/OpenSim.World/World.cs b/OpenSim/OpenSim.World/World.cs index c67366a..8e8ab3e 100644 --- a/OpenSim/OpenSim.World/World.cs +++ b/OpenSim/OpenSim.World/World.cs | |||
@@ -504,7 +504,7 @@ namespace OpenSim.world | |||
504 | public override void AddNewAvatar(IClientAPI remoteClient, LLUUID agentID, bool child) | 504 | public override void AddNewAvatar(IClientAPI remoteClient, LLUUID agentID, bool child) |
505 | { | 505 | { |
506 | remoteClient.OnRegionHandShakeReply += new GenericCall(this.SendLayerData); | 506 | remoteClient.OnRegionHandShakeReply += new GenericCall(this.SendLayerData); |
507 | remoteClient.OnRequestWearables += new GenericCall(this.GetInitialPrims); | 507 | //remoteClient.OnRequestWearables += new GenericCall(this.GetInitialPrims); |
508 | 508 | ||
509 | Avatar newAvatar = null; | 509 | Avatar newAvatar = null; |
510 | try | 510 | try |
@@ -513,7 +513,7 @@ namespace OpenSim.world | |||
513 | newAvatar = new Avatar(remoteClient, this, m_clientThreads, this.m_regInfo); | 513 | newAvatar = new Avatar(remoteClient, this, m_clientThreads, this.m_regInfo); |
514 | OpenSim.Framework.Console.MainConsole.Instance.WriteLine(OpenSim.Framework.Console.LogPriority.LOW, "World.cs:AddViewerAgent() - Adding new avatar to world"); | 514 | OpenSim.Framework.Console.MainConsole.Instance.WriteLine(OpenSim.Framework.Console.LogPriority.LOW, "World.cs:AddViewerAgent() - Adding new avatar to world"); |
515 | OpenSim.Framework.Console.MainConsole.Instance.WriteLine(OpenSim.Framework.Console.LogPriority.LOW, "World.cs:AddViewerAgent() - Starting RegionHandshake "); | 515 | OpenSim.Framework.Console.MainConsole.Instance.WriteLine(OpenSim.Framework.Console.LogPriority.LOW, "World.cs:AddViewerAgent() - Starting RegionHandshake "); |
516 | newAvatar.SendRegionHandshake(this); | 516 | newAvatar.SendRegionHandshake(this.m_regInfo); |
517 | 517 | ||
518 | PhysicsVector pVec = new PhysicsVector(newAvatar.Pos.X, newAvatar.Pos.Y, newAvatar.Pos.Z); | 518 | PhysicsVector pVec = new PhysicsVector(newAvatar.Pos.X, newAvatar.Pos.Y, newAvatar.Pos.Z); |
519 | lock (this.LockPhysicsEngine) | 519 | lock (this.LockPhysicsEngine) |