mirror of
https://github.com/opensim/opensim.git
synced 2026-08-05 17:05:55 +08:00
Attempt to catch animation fubar on region crossing that causes client hang. Mantis 319.
This commit is contained in:
@@ -1010,8 +1010,18 @@ namespace OpenSim.Region.Environment.Scenes
|
||||
/// </summary>
|
||||
protected void SetMovementAnimation(LLUUID anim, int seq)
|
||||
{
|
||||
if (m_animations[0] != anim)
|
||||
try
|
||||
{
|
||||
if (m_animations[0] != anim)
|
||||
{
|
||||
m_animations[0] = anim;
|
||||
m_animationSeqs[0] = seq;
|
||||
SendAnimPack();
|
||||
}
|
||||
}
|
||||
catch
|
||||
{
|
||||
MainLog.Instance.Warn("AVATAR", "SetMovementAnimation for avatar failed. Attempting recovery...");
|
||||
m_animations[0] = anim;
|
||||
m_animationSeqs[0] = seq;
|
||||
SendAnimPack();
|
||||
|
||||
Reference in New Issue
Block a user