diff options
author | Justin Clark-Casey (justincc) | 2010-07-12 19:48:20 +0100 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2010-07-26 23:34:19 +0100 |
commit | cfb79cd411d433b82129de6f3a54db4e8a86fab4 (patch) | |
tree | 15ba58512e088cf8cb6a0573b3cf37bfd15b840c /OpenSim/Region/ScriptEngine | |
parent | implement llSetPrimMediaParams() (diff) | |
download | opensim-SC_OLD-cfb79cd411d433b82129de6f3a54db4e8a86fab4.zip opensim-SC_OLD-cfb79cd411d433b82129de6f3a54db4e8a86fab4.tar.gz opensim-SC_OLD-cfb79cd411d433b82129de6f3a54db4e8a86fab4.tar.bz2 opensim-SC_OLD-cfb79cd411d433b82129de6f3a54db4e8a86fab4.tar.xz |
minor: correct a few method names and change accessability
Diffstat (limited to 'OpenSim/Region/ScriptEngine')
-rw-r--r-- | OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs b/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs index 4d57193..f5089aa 100644 --- a/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs +++ b/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs | |||
@@ -7819,10 +7819,10 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api | |||
7819 | if (face < 0 || face > m_host.GetNumberOfSides() - 1) | 7819 | if (face < 0 || face > m_host.GetNumberOfSides() - 1) |
7820 | return new LSL_List(); | 7820 | return new LSL_List(); |
7821 | 7821 | ||
7822 | return GetLinkPrimMediaParams(face, rules); | 7822 | return GetPrimMediaParams(face, rules); |
7823 | } | 7823 | } |
7824 | 7824 | ||
7825 | public LSL_List GetLinkPrimMediaParams(int face, LSL_List rules) | 7825 | private LSL_List GetPrimMediaParams(int face, LSL_List rules) |
7826 | { | 7826 | { |
7827 | IMoapModule module = m_ScriptEngine.World.RequestModuleInterface<IMoapModule>(); | 7827 | IMoapModule module = m_ScriptEngine.World.RequestModuleInterface<IMoapModule>(); |
7828 | if (null == module) | 7828 | if (null == module) |
@@ -7930,7 +7930,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api | |||
7930 | return SetPrimMediaParams(face, rules); | 7930 | return SetPrimMediaParams(face, rules); |
7931 | } | 7931 | } |
7932 | 7932 | ||
7933 | public LSL_Integer SetPrimMediaParams(int face, LSL_List rules) | 7933 | private LSL_Integer SetPrimMediaParams(int face, LSL_List rules) |
7934 | { | 7934 | { |
7935 | IMoapModule module = m_ScriptEngine.World.RequestModuleInterface<IMoapModule>(); | 7935 | IMoapModule module = m_ScriptEngine.World.RequestModuleInterface<IMoapModule>(); |
7936 | if (null == module) | 7936 | if (null == module) |