Update svn properties, minor formatting cleanup.

Fix unreachable code due to typo in llDetectedGroup.
0.6.0-stable
Jeff Ames 2008-09-10 05:17:28 +00:00
parent 03672c35e4
commit b9b996be38
7 changed files with 22 additions and 22 deletions

View File

@ -937,7 +937,7 @@ namespace OpenSim.Region.ScriptEngine.Common
EntityBase SensedObject = entityDetectedKey(number); EntityBase SensedObject = entityDetectedKey(number);
if (SensedObject == null) if (SensedObject == null)
return new LSL_Types.LSLInteger(0); return new LSL_Types.LSLInteger(0);
if (m_host.GroupID == m_host.ParentGroup.RootPart.GroupID) ; if (m_host.GroupID == m_host.ParentGroup.RootPart.GroupID)
return new LSL_Types.LSLInteger(1); return new LSL_Types.LSLInteger(1);
return new LSL_Types.LSLInteger(0); return new LSL_Types.LSLInteger(0);
} }