diff options
| -rw-r--r-- | indra/newview/llvoavatarself.cpp | 4 | ||||
| -rw-r--r-- | indra/newview/llvoavatarself.h | 2 | 
2 files changed, 3 insertions, 3 deletions
diff --git a/indra/newview/llvoavatarself.cpp b/indra/newview/llvoavatarself.cpp index 9c1c304133..57f7734fea 100644 --- a/indra/newview/llvoavatarself.cpp +++ b/indra/newview/llvoavatarself.cpp @@ -699,7 +699,7 @@ bool LLVOAvatarSelf::isValid() const  // virtual  void LLVOAvatarSelf::idleUpdate(LLAgent &agent, const F64 &time)  { -    if (isValid()) +    if (isAgentAvatarValid())      {          LLVOAvatar::idleUpdate(agent, time);          idleUpdateTractorBeam(); @@ -1238,7 +1238,7 @@ bool LLVOAvatarSelf::detachObject(LLViewerObject *viewer_object)          // Make sure the inventory is in sync with the avatar.          // Update COF contents, don't trigger appearance update. -        if (!isValid()) +        if (!isAgentAvatarValid())          {              LL_INFOS() << "removeItemLinks skipped, avatar is under destruction" << LL_ENDL;          } diff --git a/indra/newview/llvoavatarself.h b/indra/newview/llvoavatarself.h index 77556c8412..051ac791c0 100644 --- a/indra/newview/llvoavatarself.h +++ b/indra/newview/llvoavatarself.h @@ -111,7 +111,7 @@ private:  public:      /*virtual*/ bool    isSelf() const { return true; }          virtual bool    isBuddy() const { return false; } -    /*virtual*/ bool    isValid() const; +    /*virtual*/ bool    isValid() const; // use isAgentAvatarValid, it's fuller      //--------------------------------------------------------------------      // Updates  | 
