aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ScriptEngine/Common/LSL_BuiltIn_Commands.cs
diff options
context:
space:
mode:
authorJeff Ames2008-09-10 05:17:28 +0000
committerJeff Ames2008-09-10 05:17:28 +0000
commitb9b996be38f54f384ed614441e2275f3862fd540 (patch)
treeba95eb13b2f4043ea960de9e8bd79aca58f6f525 /OpenSim/Region/ScriptEngine/Common/LSL_BuiltIn_Commands.cs
parentThank you kindly, CMickeyB for a patch that adds a (diff)
downloadopensim-SC_OLD-b9b996be38f54f384ed614441e2275f3862fd540.zip
opensim-SC_OLD-b9b996be38f54f384ed614441e2275f3862fd540.tar.gz
opensim-SC_OLD-b9b996be38f54f384ed614441e2275f3862fd540.tar.bz2
opensim-SC_OLD-b9b996be38f54f384ed614441e2275f3862fd540.tar.xz
Update svn properties, minor formatting cleanup.
Fix unreachable code due to typo in llDetectedGroup.
Diffstat (limited to 'OpenSim/Region/ScriptEngine/Common/LSL_BuiltIn_Commands.cs')
-rw-r--r--OpenSim/Region/ScriptEngine/Common/LSL_BuiltIn_Commands.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/ScriptEngine/Common/LSL_BuiltIn_Commands.cs b/OpenSim/Region/ScriptEngine/Common/LSL_BuiltIn_Commands.cs
index 9f13a10..6575eee 100644
--- a/OpenSim/Region/ScriptEngine/Common/LSL_BuiltIn_Commands.cs
+++ b/OpenSim/Region/ScriptEngine/Common/LSL_BuiltIn_Commands.cs
@@ -937,7 +937,7 @@ namespace OpenSim.Region.ScriptEngine.Common
937 EntityBase SensedObject = entityDetectedKey(number); 937 EntityBase SensedObject = entityDetectedKey(number);
938 if (SensedObject == null) 938 if (SensedObject == null)
939 return new LSL_Types.LSLInteger(0); 939 return new LSL_Types.LSLInteger(0);
940 if (m_host.GroupID == m_host.ParentGroup.RootPart.GroupID) ; 940 if (m_host.GroupID == m_host.ParentGroup.RootPart.GroupID)
941 return new LSL_Types.LSLInteger(1); 941 return new LSL_Types.LSLInteger(1);
942 return new LSL_Types.LSLInteger(0); 942 return new LSL_Types.LSLInteger(0);
943 } 943 }