From 28c3c0ac477660f360bcc55bdf97209a06c17413 Mon Sep 17 00:00:00 2001 From: phr0z3nt04st Date: Sat, 22 May 2010 21:37:02 -0500 Subject: [PATCH] Point at was being disabled with look at. --- indra/newview/llglsandbox.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/indra/newview/llglsandbox.cpp b/indra/newview/llglsandbox.cpp index cf1ff38ba..426258907 100644 --- a/indra/newview/llglsandbox.cpp +++ b/indra/newview/llglsandbox.cpp @@ -105,7 +105,7 @@ BOOL LLAgent::setLookAt(ELookAtType target_type, LLViewerObject *object, LLVecto BOOL LLAgent::setPointAt(EPointAtType target_type, LLViewerObject *object, LLVector3 position) { // disallow pointing at attachments and avatars - if (object && (object->isAttachment() || object->isAvatar()) || gSavedSettings.getBOOL("PrivateLookAt")) + if (object && (object->isAttachment() || object->isAvatar()) || gSavedSettings.getBOOL("DisablePointAtAndBeam")) { return FALSE; }