since we will be making the Get return type the remaining ruleset as with the Set return type, we need to move the original return type to a ref param

Conflicts:

	OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs
This commit is contained in:
Melanie
2012-08-25 21:03:47 +01:00
parent 681066050c
commit 86d4e45f4d
2 changed files with 139 additions and 137 deletions

View File

@@ -2261,7 +2261,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api
List<SceneObjectPart> parts = ((LSL_Api)m_LSL_Api).GetLinkParts(linknumber);
foreach (SceneObjectPart part in parts)
{
retVal += ((LSL_Api)m_LSL_Api).GetPrimParams(part, rules);
((LSL_Api)m_LSL_Api).GetPrimParams(part, rules, ref retVal);
}
return retVal;
}