* From: Alan M Webb <awebb.vnet.ibm.com>

* Patch to fix negative indices bug in llListInsertList
0.6.0-stable
Justin Clarke Casey 2008-04-24 10:17:33 +00:00
parent 12bba3da4b
commit c49b25f19e
1 changed files with 1 additions and 1 deletions

View File

@ -3280,7 +3280,7 @@ namespace OpenSim.Region.ScriptEngine.Common
if(index < 0)
{
index = index+src.Length;
index = index+dest.Length;
if(index < 0)
{
index = 0;