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

This commit is contained in:
Homer Horwitz
2008-10-17 19:01:01 +00:00
parent 7891f821e2
commit 9e46d5e207

View File

@@ -4041,7 +4041,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api
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)