aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Framework/Scenes/ScenePresence.cs
diff options
context:
space:
mode:
authorMelanie2012-05-17 13:34:47 +0100
committerMelanie2012-05-17 13:34:47 +0100
commitb4cd8b491bc53baa57da3b9efb5ab8b8287ddfe1 (patch)
treeb764f0c0a7b7b6f6caeb4b3eddf1441d4f79ed17 /OpenSim/Region/Framework/Scenes/ScenePresence.cs
parentMerge branch 'master' into careminster (diff)
parentudp transfer: make number packets estimation coerent with number actually sen... (diff)
downloadopensim-SC_OLD-b4cd8b491bc53baa57da3b9efb5ab8b8287ddfe1.zip
opensim-SC_OLD-b4cd8b491bc53baa57da3b9efb5ab8b8287ddfe1.tar.gz
opensim-SC_OLD-b4cd8b491bc53baa57da3b9efb5ab8b8287ddfe1.tar.bz2
opensim-SC_OLD-b4cd8b491bc53baa57da3b9efb5ab8b8287ddfe1.tar.xz
Merge branch 'avination' into careminster
Diffstat (limited to 'OpenSim/Region/Framework/Scenes/ScenePresence.cs')
-rw-r--r--OpenSim/Region/Framework/Scenes/ScenePresence.cs4
1 files changed, 3 insertions, 1 deletions
diff --git a/OpenSim/Region/Framework/Scenes/ScenePresence.cs b/OpenSim/Region/Framework/Scenes/ScenePresence.cs
index 8a6a6b4..913942f 100644
--- a/OpenSim/Region/Framework/Scenes/ScenePresence.cs
+++ b/OpenSim/Region/Framework/Scenes/ScenePresence.cs
@@ -3432,7 +3432,7 @@ namespace OpenSim.Region.Framework.Scenes
3432 //PhysicsActor.OnRequestTerseUpdate += SendTerseUpdateToAllClients; 3432 //PhysicsActor.OnRequestTerseUpdate += SendTerseUpdateToAllClients;
3433 PhysicsActor.OnCollisionUpdate += PhysicsCollisionUpdate; 3433 PhysicsActor.OnCollisionUpdate += PhysicsCollisionUpdate;
3434 PhysicsActor.OnOutOfBounds += OutOfBoundsCall; // Called for PhysicsActors when there's something wrong 3434 PhysicsActor.OnOutOfBounds += OutOfBoundsCall; // Called for PhysicsActors when there's something wrong
3435 PhysicsActor.SubscribeEvents(500); 3435 PhysicsActor.SubscribeEvents(100);
3436 PhysicsActor.LocalID = LocalId; 3436 PhysicsActor.LocalID = LocalId;
3437 } 3437 }
3438 3438
@@ -4325,6 +4325,8 @@ namespace OpenSim.Region.Framework.Scenes
4325 // do event notification 4325 // do event notification
4326 if (startedColliders.Count > 0) 4326 if (startedColliders.Count > 0)
4327 { 4327 {
4328 CollisionSounds.AvatarCollisionSound(this, startedColliders);
4329
4328 ColliderArgs StartCollidingMessage = new ColliderArgs(); 4330 ColliderArgs StartCollidingMessage = new ColliderArgs();
4329 List<DetectedObject> colliding = new List<DetectedObject>(); 4331 List<DetectedObject> colliding = new List<DetectedObject>();
4330 foreach (uint localId in startedColliders) 4332 foreach (uint localId in startedColliders)