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

iar_mods
Justin Clark-Casey (justincc) 2012-02-02 23:35:16 +00:00
parent 264c83aec4
commit 54d473e200
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)