Fixed llDeleteSubList; the indices were swapped (Fixes Mantis#2399).

0.6.0-stable
Homer Horwitz 2008-10-17 19:01:01 +00:00
parent 7891f821e2
commit 9e46d5e207
1 changed files with 1 additions and 1 deletions

View File

@ -4041,7 +4041,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api
public LSL_List llDeleteSubList(LSL_List src, int start, int end) public LSL_List llDeleteSubList(LSL_List src, int start, int end)
{ {
return src.DeleteSublist(end, start); return src.DeleteSublist(start, end);
} }
public LSL_Integer llGetListEntryType(LSL_List src, int index) public LSL_Integer llGetListEntryType(LSL_List src, int index)