temporary HACK to not kill some viewers

This commit is contained in:
UbitUmarov
2018-12-31 16:58:44 +00:00
parent ae00623b65
commit 813fda90da
6 changed files with 19 additions and 4 deletions

View File

@@ -3111,6 +3111,12 @@ namespace OpenSim.Region.Framework.Scenes
m_LastLogin = Util.EnvironmentTickCount();
//HACK only send object animations to fs beta for now
string viewername = Util.GetViewerName(aCircuit);
if(sp != null && viewername.StartsWith("Firestorm-Betax64 6"))
{
sp.ControllingClient.DoObjectAnimations = true;
}
return sp;
}
@@ -4190,7 +4196,6 @@ namespace OpenSim.Region.Framework.Scenes
return false;
}
}
return true;
}