fix identation

0.9.1.1
UbitUmarov 2019-11-23 01:21:36 +00:00
parent 14270e316a
commit 6e2b5ac238
1 changed files with 2 additions and 3 deletions

View File

@ -118,8 +118,7 @@ namespace OpenSim.Region.Framework.Scenes.Serialization
if (reader.Name == "KeyframeMotion" && reader.NodeType == XmlNodeType.Element) if (reader.Name == "KeyframeMotion" && reader.NodeType == XmlNodeType.Element)
{ {
string innerkeytxt = reader.ReadElementContentAsString(); string innerkeytxt = reader.ReadElementContentAsString();
sceneObject.RootPart.KeyframeMotion = sceneObject.RootPart.KeyframeMotion = KeyframeMotion.FromData(sceneObject, Convert.FromBase64String(innerkeytxt));
KeyframeMotion.FromData(sceneObject, Convert.FromBase64String(innerkeytxt));
} }
else else
sceneObject.RootPart.KeyframeMotion = null; sceneObject.RootPart.KeyframeMotion = null;