Remove unused PhysicsActor.SOPDescription

0.7.2-post-fixes
Justin Clark-Casey (justincc) 2011-11-21 17:47:30 +00:00
parent c253539c04
commit 08bc6622dd
1 changed files with 2 additions and 11 deletions

View File

@ -895,15 +895,7 @@ namespace OpenSim.Region.Framework.Scenes
public string Description
{
get { return m_description; }
set
{
m_description = value;
PhysicsActor actor = PhysActor;
if (actor != null)
{
actor.SOPDescription = value;
}
}
set { m_description = value; }
}
/// <value>
@ -1569,8 +1561,7 @@ namespace OpenSim.Region.Framework.Scenes
// Basic Physics returns null.. joy joy joy.
if (PhysActor != null)
{
PhysActor.SOPName = this.Name; // save object name and desc into the PhysActor so ODE internals know the joint/body info
PhysActor.SOPDescription = this.Description;
PhysActor.SOPName = this.Name; // save object into the PhysActor so ODE internals know the joint/body info
PhysActor.SetMaterial(Material);
DoPhysicsPropertyUpdate(RigidBody, true);
PhysActor.SetVolumeDetect(VolumeDetectActive ? 1 : 0);