aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/OSSL_Api.cs
diff options
context:
space:
mode:
authorSignpostMarv2012-08-24 17:02:13 +0100
committerJustin Clark-Casey (justincc)2012-08-25 02:30:23 +0100
commit2a2e120470ea530ea0a6f035c5cf28247f94532c (patch)
treeb19036258ed0a6962f0db90081024c6eaec75ca0 /OpenSim/Region/ScriptEngine/Shared/Api/Implementation/OSSL_Api.cs
parentuse SceneObjectPart instead of var (diff)
downloadopensim-SC_OLD-2a2e120470ea530ea0a6f035c5cf28247f94532c.zip
opensim-SC_OLD-2a2e120470ea530ea0a6f035c5cf28247f94532c.tar.gz
opensim-SC_OLD-2a2e120470ea530ea0a6f035c5cf28247f94532c.tar.bz2
opensim-SC_OLD-2a2e120470ea530ea0a6f035c5cf28247f94532c.tar.xz
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
Diffstat (limited to 'OpenSim/Region/ScriptEngine/Shared/Api/Implementation/OSSL_Api.cs')
-rw-r--r--OpenSim/Region/ScriptEngine/Shared/Api/Implementation/OSSL_Api.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/OSSL_Api.cs b/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/OSSL_Api.cs
index c277708..a391b73 100644
--- a/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/OSSL_Api.cs
+++ b/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/OSSL_Api.cs
@@ -2250,7 +2250,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api
2250 List<SceneObjectPart> parts = ((LSL_Api)m_LSL_Api).GetLinkParts(linknumber); 2250 List<SceneObjectPart> parts = ((LSL_Api)m_LSL_Api).GetLinkParts(linknumber);
2251 foreach (SceneObjectPart part in parts) 2251 foreach (SceneObjectPart part in parts)
2252 { 2252 {
2253 retVal += ((LSL_Api)m_LSL_Api).GetPrimParams(part, rules); 2253 ((LSL_Api)m_LSL_Api).GetPrimParams(part, rules, ref retVal);
2254 } 2254 }
2255 return retVal; 2255 return retVal;
2256 } 2256 }