Fixed llDeleteSubList; the indices were swapped (Fixes Mantis#2399).
parent
7891f821e2
commit
9e46d5e207
|
@ -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)
|
||||||
|
|
Loading…
Reference in New Issue