diff --git a/OpenSim/Region/Framework/Scenes/ScenePresence.cs b/OpenSim/Region/Framework/Scenes/ScenePresence.cs index 604bc4ce50..8f21386e7b 100644 --- a/OpenSim/Region/Framework/Scenes/ScenePresence.cs +++ b/OpenSim/Region/Framework/Scenes/ScenePresence.cs @@ -3499,14 +3499,14 @@ namespace OpenSim.Region.Framework.Scenes if (part.PhysActor == null) { - // none physcis shape - //if (part.PhysicsShapeType == (byte)PhysicsShapeType.None) + // none physics shape + if (part.PhysicsShapeType == (byte)PhysicsShapeType.None) ControllingClient.SendAlertMessage(" There is no suitable surface to sit on, try another spot."); - //else - //{ // non physical phantom TODO + else + { // non physical phantom TODO //ControllingClient.SendAlertMessage(" There is no suitable surface to sit on, try another spot."); - // return false; - //} + return false; + } return true; }