diff options
Diffstat (limited to 'OpenSim/Region/Framework/Scenes/SceneObjectPart.cs')
-rw-r--r-- | OpenSim/Region/Framework/Scenes/SceneObjectPart.cs | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/OpenSim/Region/Framework/Scenes/SceneObjectPart.cs b/OpenSim/Region/Framework/Scenes/SceneObjectPart.cs index ff67d6d..af7fae3 100644 --- a/OpenSim/Region/Framework/Scenes/SceneObjectPart.cs +++ b/OpenSim/Region/Framework/Scenes/SceneObjectPart.cs | |||
@@ -2266,11 +2266,14 @@ namespace OpenSim.Region.Framework.Scenes | |||
2266 | 2266 | ||
2267 | public void PhysicsOutOfBounds(Vector3 pos) | 2267 | public void PhysicsOutOfBounds(Vector3 pos) |
2268 | { | 2268 | { |
2269 | m_log.Error("[PHYSICS]: Physical Object went out of bounds."); | 2269 | // Note: This is only being called on the root prim at this time. |
2270 | |||
2271 | m_log.ErrorFormat( | ||
2272 | "[SCENE OBJECT PART]: Physical object {0}, localID {1} went out of bounds at {2} in {3}. Stopping at {4} and making non-physical.", | ||
2273 | Name, LocalId, pos, ParentGroup.Scene.Name, AbsolutePosition); | ||
2270 | 2274 | ||
2271 | RemFlag(PrimFlags.Physics); | 2275 | RemFlag(PrimFlags.Physics); |
2272 | DoPhysicsPropertyUpdate(false, true); | 2276 | DoPhysicsPropertyUpdate(false, true); |
2273 | //ParentGroup.Scene.PhysicsScene.AddPhysicsActorTaint(PhysActor); | ||
2274 | } | 2277 | } |
2275 | 2278 | ||
2276 | public void PhysicsRequestingTerseUpdate() | 2279 | public void PhysicsRequestingTerseUpdate() |