Stop removing actor from the hash maps in OdeScene.RemoveCharacter() since this is now being down in OdeCharacter.DestroyOdeStructures()

0.7.2-post-fixes
Justin Clark-Casey (justincc) 2011-11-22 22:37:06 +00:00
parent 476d893630
commit 754d6036ea
1 changed files with 1 additions and 6 deletions

View File

@ -1735,12 +1735,7 @@ namespace OpenSim.Region.Physics.OdePlugin
internal void RemoveCharacter(OdeCharacter chr)
{
if (_characters.Contains(chr))
{
_characters.Remove(chr);
geom_name_map.Remove(chr.Shell);
actor_name_map.Remove(chr.Shell);
}
_characters.Remove(chr);
}
private PhysicsActor AddPrim(String name, Vector3 position, Vector3 size, Quaternion rotation,