aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorJustin Clarke Casey2008-04-24 10:17:33 +0000
committerJustin Clarke Casey2008-04-24 10:17:33 +0000
commitc49b25f19e5f6e0f9a1c20d89d66c15be61ef1e8 (patch)
tree5465cbc7f7e1f41fee1b752936ecc2cb2b2dfe8c
parent* Fixed an annoying pop-up box when crossing borders. (diff)
downloadopensim-SC_OLD-c49b25f19e5f6e0f9a1c20d89d66c15be61ef1e8.zip
opensim-SC_OLD-c49b25f19e5f6e0f9a1c20d89d66c15be61ef1e8.tar.gz
opensim-SC_OLD-c49b25f19e5f6e0f9a1c20d89d66c15be61ef1e8.tar.bz2
opensim-SC_OLD-c49b25f19e5f6e0f9a1c20d89d66c15be61ef1e8.tar.xz
* From: Alan M Webb <awebb.vnet.ibm.com>
* Patch to fix negative indices bug in llListInsertList
-rw-r--r--OpenSim/Region/ScriptEngine/Common/LSL_BuiltIn_Commands.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/ScriptEngine/Common/LSL_BuiltIn_Commands.cs b/OpenSim/Region/ScriptEngine/Common/LSL_BuiltIn_Commands.cs
index 2d1b02d..3778c09 100644
--- a/OpenSim/Region/ScriptEngine/Common/LSL_BuiltIn_Commands.cs
+++ b/OpenSim/Region/ScriptEngine/Common/LSL_BuiltIn_Commands.cs
@@ -3280,7 +3280,7 @@ namespace OpenSim.Region.ScriptEngine.Common
3280 3280
3281 if(index < 0) 3281 if(index < 0)
3282 { 3282 {
3283 index = index+src.Length; 3283 index = index+dest.Length;
3284 if(index < 0) 3284 if(index < 0)
3285 { 3285 {
3286 index = 0; 3286 index = 0;