Skip to content
Snippets Groups Projects
Commit 9ca90cc2 authored by Rye Mutt's avatar Rye Mutt :bread:
Browse files

Silence infuriating null animation spam

parent ca6cc7fc
No related branches found
No related tags found
No related merge requests found
...@@ -341,6 +341,11 @@ void LLMotionController::removeMotionInstance(LLMotion* motionp) ...@@ -341,6 +341,11 @@ void LLMotionController::removeMotionInstance(LLMotion* motionp)
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------
LLMotion* LLMotionController::createMotion( const LLUUID &id ) LLMotion* LLMotionController::createMotion( const LLUUID &id )
{ {
if (id.isNull())
{
return NULL;
}
// do we have an instance of this motion for this character? // do we have an instance of this motion for this character?
LLMotion *motion = findMotion(id); LLMotion *motion = findMotion(id);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment