Fix teleporting from older to newer regions

This commit is contained in:
Melanie
2012-05-04 21:00:41 +02:00
parent 333d013b5c
commit 197163e12a

View File

@@ -602,7 +602,14 @@ namespace OpenSim.Framework
if (args["default_animation"] != null)
{
DefaultAnim = new Animation((OSDMap)args["default_animation"]);
try
{
DefaultAnim = new Animation((OSDMap)args["default_animation"]);
}
catch
{
DefaultAnim = null;
}
}
//if ((args["agent_textures"] != null) && (args["agent_textures"]).Type == OSDType.Array)