Make osNpcStopAnimation() call AvatarStopAnimation() rather than AvatarPlayAnimation()

0.7.3-post-fixes
Justin Clark-Casey (justincc) 2012-02-17 02:53:12 +00:00
parent c5ff37bf3e
commit 972f73ed2b
1 changed files with 1 additions and 1 deletions

View File

@ -2595,7 +2595,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api
UUID npcID = new UUID(npc.m_string);
if (module.CheckPermissions(npcID, m_host.OwnerID))
AvatarPlayAnimation(npcID.ToString(), animation);
AvatarStopAnimation(npcID.ToString(), animation);
}
}