Do a ScenePresence null check in HGMessageTransferModule.SendIMToScene() to stop a NullReferenceException being thrown if an HG IM is sent to a simulator running multiple regions

This is an attempt to address http://opensimulator.org/mantis/view.php?id=5791
This commit is contained in:
Justin Clark-Casey (justincc)
2011-11-14 15:24:02 +00:00
parent e61ea79c72
commit 49ec85ae15
2 changed files with 4 additions and 1 deletions

View File

@@ -2854,6 +2854,8 @@ namespace OpenSim.Region.Framework.Scenes
Velocity = Vector3.Zero;
AbsolutePosition = pos;
// m_log.DebugFormat("[SCENE PRESENCE]: Prevented flyoff for {0} at {1}", Name, AbsolutePosition);
AddToPhysicalScene(isFlying);
}
}