diff options
author | Justin Clark-Casey (justincc) | 2012-02-02 22:48:36 +0000 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2012-02-02 22:48:36 +0000 |
commit | 264c83aec4151a93647c14e317067d8646f38680 (patch) | |
tree | e99f11889ea473040e4c6c0f5a78205352302300 /OpenSim/Region/ScriptEngine/Shared/Api/Runtime | |
parent | Add stress tests for simple object add of 100 prim objects. Add time taken t... (diff) | |
download | opensim-SC_OLD-264c83aec4151a93647c14e317067d8646f38680.zip opensim-SC_OLD-264c83aec4151a93647c14e317067d8646f38680.tar.gz opensim-SC_OLD-264c83aec4151a93647c14e317067d8646f38680.tar.bz2 opensim-SC_OLD-264c83aec4151a93647c14e317067d8646f38680.tar.xz |
Add llGetLinkNumberOfSides to LSL_Stub and ILSL_Api
It already existed in LSL_Api but it also needs to exist in these two other places for a script to be able to see it.
Hopefully resolves http://opensimulator.org/mantis/view.php?id=5489
Diffstat (limited to 'OpenSim/Region/ScriptEngine/Shared/Api/Runtime')
-rw-r--r-- | OpenSim/Region/ScriptEngine/Shared/Api/Runtime/LSL_Stub.cs | 5 |
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 840d3a4..d1a5e2f 100644 --- a/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/LSL_Stub.cs +++ b/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/LSL_Stub.cs | |||
@@ -539,6 +539,11 @@ namespace OpenSim.Region.ScriptEngine.Shared.ScriptBase | |||
539 | return m_LSL_Functions.llGetLinkNumber(); | 539 | return m_LSL_Functions.llGetLinkNumber(); |
540 | } | 540 | } |
541 | 541 | ||
542 | public LSL_Integer llGetLinkNumberOfSides(int link) | ||
543 | { | ||
544 | return m_LSL_Functions.llGetLinkNumber(); | ||
545 | } | ||
546 | |||
542 | public LSL_Integer llGetListEntryType(LSL_List src, int index) | 547 | public LSL_Integer llGetListEntryType(LSL_List src, int index) |
543 | { | 548 | { |
544 | return m_LSL_Functions.llGetListEntryType(src, index); | 549 | return m_LSL_Functions.llGetListEntryType(src, index); |