aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ScriptEngine/Shared/Api/Runtime
diff options
context:
space:
mode:
authorMelanie2010-10-25 01:24:42 +0100
committerMelanie2010-10-25 01:24:42 +0100
commit3113cc91299445bbc22d92d1049244f5abfff72b (patch)
tree4b223a4ab500389f2706d6521bfefa84e98e5501 /OpenSim/Region/ScriptEngine/Shared/Api/Runtime
parentMerge branch 'master' into careminster-presence-refactor (diff)
parentComment repeated add and remove of avatars from the physical scene. It's no (diff)
downloadopensim-SC_OLD-3113cc91299445bbc22d92d1049244f5abfff72b.zip
opensim-SC_OLD-3113cc91299445bbc22d92d1049244f5abfff72b.tar.gz
opensim-SC_OLD-3113cc91299445bbc22d92d1049244f5abfff72b.tar.bz2
opensim-SC_OLD-3113cc91299445bbc22d92d1049244f5abfff72b.tar.xz
Merge branch 'careminster-presence-refactor' of ssh://melanie@3dhosting.de/var/git/careminster into careminster-presence-refactor
Diffstat (limited to 'OpenSim/Region/ScriptEngine/Shared/Api/Runtime')
-rw-r--r--OpenSim/Region/ScriptEngine/Shared/Api/Runtime/LSL_Stub.cs5
1 files changed, 5 insertions, 0 deletions
diff --git a/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/LSL_Stub.cs b/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/LSL_Stub.cs
index f14967e..7c26824 100644
--- a/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/LSL_Stub.cs
+++ b/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/LSL_Stub.cs
@@ -1849,5 +1849,10 @@ namespace OpenSim.Region.ScriptEngine.Shared.ScriptBase
1849 { 1849 {
1850 return m_LSL_Functions.llClearPrimMedia(face); 1850 return m_LSL_Functions.llClearPrimMedia(face);
1851 } 1851 }
1852
1853 public LSL_Integer llGetLinkNumberOfSides(LSL_Integer link)
1854 {
1855 return m_LSL_Functions.llGetLinkNumberOfSides(link);
1856 }
1852 } 1857 }
1853} 1858}