revert 8cc02916ab. allow physics sit on

phanton to fall back to ugly sit because some objects depend on it
master
UbitUmarov 2020-01-29 21:23:06 +00:00
parent 8075c1e363
commit fb1911d409
1 changed files with 6 additions and 6 deletions

View File

@ -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;
}