mirror of
https://github.com/opensim/opensim.git
synced 2026-08-04 16:22:50 +08:00
* From: Alan M Webb <awebb.vnet.ibm.com>
* Patch to fix negative indices bug in llListInsertList
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user