mirror of
https://github.com/opensim/opensim.git
synced 2026-08-05 00:46:02 +08:00
Fixed llDeleteSubList; the indices were swapped (Fixes Mantis#2399).
This commit is contained in:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user