D'oh - we want to call llGetLinkNumberOfSides() in the LSL_Stub, not llGetLinkNumber().

0.7.2-post-fixes
Justin Clark-Casey (justincc) 2012-02-02 23:35:16 +00:00
parent c1d84ffc6c
commit 31a0f75aff
1 changed files with 1 additions and 1 deletions

View File

@ -541,7 +541,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.ScriptBase
public LSL_Integer llGetLinkNumberOfSides(int link)
{
return m_LSL_Functions.llGetLinkNumber();
return m_LSL_Functions.llGetLinkNumberOfSides(link);
}
public LSL_Integer llGetListEntryType(LSL_List src, int index)