aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Framework
diff options
context:
space:
mode:
authorJustin Clark-Casey (justincc)2010-02-05 19:34:25 +0000
committerJustin Clark-Casey (justincc)2010-02-05 19:34:25 +0000
commitbf9fc69d017e9179b32cb7fde3374264f5c1ea8d (patch)
tree50dcd9f5fa1443a30dd4120c5cbe01d52f2749f2 /OpenSim/Region/Framework
parentRevert "Old OpenSim installations may have no AssetCaching setting in config-... (diff)
downloadopensim-SC_OLD-bf9fc69d017e9179b32cb7fde3374264f5c1ea8d.zip
opensim-SC_OLD-bf9fc69d017e9179b32cb7fde3374264f5c1ea8d.tar.gz
opensim-SC_OLD-bf9fc69d017e9179b32cb7fde3374264f5c1ea8d.tar.bz2
opensim-SC_OLD-bf9fc69d017e9179b32cb7fde3374264f5c1ea8d.tar.xz
minor: log what kind of wearable cannot be found
Diffstat (limited to 'OpenSim/Region/Framework')
-rw-r--r--OpenSim/Region/Framework/Scenes/ScenePresence.cs5
1 files changed, 2 insertions, 3 deletions
diff --git a/OpenSim/Region/Framework/Scenes/ScenePresence.cs b/OpenSim/Region/Framework/Scenes/ScenePresence.cs
index bcf22c3..e960d51 100644
--- a/OpenSim/Region/Framework/Scenes/ScenePresence.cs
+++ b/OpenSim/Region/Framework/Scenes/ScenePresence.cs
@@ -3184,8 +3184,7 @@ namespace OpenSim.Region.Framework.Scenes
3184 m_physicsActor.OnCollisionUpdate += PhysicsCollisionUpdate; 3184 m_physicsActor.OnCollisionUpdate += PhysicsCollisionUpdate;
3185 m_physicsActor.OnOutOfBounds += OutOfBoundsCall; // Called for PhysicsActors when there's something wrong 3185 m_physicsActor.OnOutOfBounds += OutOfBoundsCall; // Called for PhysicsActors when there's something wrong
3186 m_physicsActor.SubscribeEvents(500); 3186 m_physicsActor.SubscribeEvents(500);
3187 m_physicsActor.LocalID = LocalId; 3187 m_physicsActor.LocalID = LocalId;
3188
3189 } 3188 }
3190 3189
3191 private void OutOfBoundsCall(Vector3 pos) 3190 private void OutOfBoundsCall(Vector3 pos)
@@ -3195,7 +3194,7 @@ namespace OpenSim.Region.Framework.Scenes
3195 3194
3196 //AddToPhysicalScene(flying); 3195 //AddToPhysicalScene(flying);
3197 if (ControllingClient != null) 3196 if (ControllingClient != null)
3198 ControllingClient.SendAgentAlertMessage("Physics is having a problem with your avatar. You may not be able to move until you relog.",true); 3197 ControllingClient.SendAgentAlertMessage("Physics is having a problem with your avatar. You may not be able to move until you relog.", true);
3199 } 3198 }
3200 3199
3201 // Event called by the physics plugin to tell the avatar about a collision. 3200 // Event called by the physics plugin to tell the avatar about a collision.