Fix crash on login

This commit is contained in:
Cinder
2019-06-30 10:41:00 -05:00
parent 687c1a0395
commit e06daeb458

View File

@@ -4367,9 +4367,12 @@ namespace OpenMetaverse
homeLookAt = reply.HomeLookAt;
lookAt = reply.LookAt;
foreach (var gesture in reply.Gestures)
if (reply.Gestures != null)
{
ActiveGestures.Add(gesture.Key, gesture.Value);
foreach (var gesture in reply.Gestures)
{
ActiveGestures.Add(gesture.Key, gesture.Value);
}
}
}