diff options
author | Dave SIMmONs <simon@lindenlab.com> | 2011-03-14 17:33:33 -0700 |
---|---|---|
committer | Dave SIMmONs <simon@lindenlab.com> | 2011-03-14 17:33:33 -0700 |
commit | 18ae6c639e58c4c996d4c3b2a4b34ef41deab970 (patch) | |
tree | 0af92843876a38411c9a6d824f9c1e15df63b790 /indra/newview | |
parent | 797a405b3704ec7c7f1aa871a0274c97def7e55e (diff) |
Added warning if llEventHost LLAgent requestSit() can't find the sit target
Diffstat (limited to 'indra/newview')
-rw-r--r-- | indra/newview/llagentlistener.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/indra/newview/llagentlistener.cpp b/indra/newview/llagentlistener.cpp index ef39fed587..da5bf59e74 100644 --- a/indra/newview/llagentlistener.cpp +++ b/indra/newview/llagentlistener.cpp @@ -117,6 +117,11 @@ void LLAgentListener::requestSit(LLSD const & event_data) const object->getRegion()->sendReliableMessage(); } + else + { + llwarns << "LLAgent requestSit could not find the sit target " + << event_data["obj_uuid"].asUUID() << llendl; + } } void LLAgentListener::requestStand(LLSD const & event_data) const |