diff options
author | SignpostMarv | 2012-08-30 15:55:03 +0100 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2012-08-31 01:19:17 +0100 |
commit | 3c019bea8c006c6d09e6fa5583f60e01a87b766b (patch) | |
tree | 157b88bf4323a02986a332fcbf2c1951e3b4b339 | |
parent | Replace SendBannedUserList with Avination's version. Untested in core. Not ev... (diff) | |
download | opensim-SC_OLD-3c019bea8c006c6d09e6fa5583f60e01a87b766b.zip opensim-SC_OLD-3c019bea8c006c6d09e6fa5583f60e01a87b766b.tar.gz opensim-SC_OLD-3c019bea8c006c6d09e6fa5583f60e01a87b766b.tar.bz2 opensim-SC_OLD-3c019bea8c006c6d09e6fa5583f60e01a87b766b.tar.xz |
Implementing a vastly simpler means of allowing region modules to access GetLinkParts than mantis 6236
-rw-r--r-- | OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs b/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs index 45286c0..be22cb4 100644 --- a/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs +++ b/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs | |||
@@ -247,7 +247,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api | |||
247 | return GetLinkParts(m_host, linkType); | 247 | return GetLinkParts(m_host, linkType); |
248 | } | 248 | } |
249 | 249 | ||
250 | private List<SceneObjectPart> GetLinkParts(SceneObjectPart part, int linkType) | 250 | public static List<SceneObjectPart> GetLinkParts(SceneObjectPart part, int linkType) |
251 | { | 251 | { |
252 | List<SceneObjectPart> ret = new List<SceneObjectPart>(); | 252 | List<SceneObjectPart> ret = new List<SceneObjectPart>(); |
253 | ret.Add(part); | 253 | ret.Add(part); |