summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDave SIMmONs <simon@lindenlab.com>2011-03-14 17:33:33 -0700
committerDave SIMmONs <simon@lindenlab.com>2011-03-14 17:33:33 -0700
commit18ae6c639e58c4c996d4c3b2a4b34ef41deab970 (patch)
tree0af92843876a38411c9a6d824f9c1e15df63b790
parent797a405b3704ec7c7f1aa871a0274c97def7e55e (diff)
Added warning if llEventHost LLAgent requestSit() can't find the sit target
-rw-r--r--indra/newview/llagentlistener.cpp5
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