* From: Alan M Webb <awebb.vnet.ibm.com>
* Patch to fix negative indices bug in llListInsertList0.6.0-stable
parent
12bba3da4b
commit
c49b25f19e
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue