aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
-rw-r--r--CONTRIBUTORS.txt3
-rw-r--r--OpenSim/Region/ScriptEngine/Common/LSL_BuiltIn_Commands.cs21
2 files changed, 15 insertions, 9 deletions
diff --git a/CONTRIBUTORS.txt b/CONTRIBUTORS.txt
index a407382..be0dddc 100644
--- a/CONTRIBUTORS.txt
+++ b/CONTRIBUTORS.txt
@@ -16,7 +16,7 @@ OpenSim Developers
16* CW 16* CW
17* Babblefrog 17* Babblefrog
18* Tedd 18* Tedd
19* justincc (IBM) 19* justincc
20* Teravus (w3z) 20* Teravus (w3z)
21* Johan Berntsson (3Di) 21* Johan Berntsson (3Di)
22* Ckrinke (Charles Krinke) 22* Ckrinke (Charles Krinke)
@@ -61,6 +61,7 @@ Patches
61* Junta Kohime 61* Junta Kohime
62* Homer_Horwitz 62* Homer_Horwitz
63* Zha Ewry 63* Zha Ewry
64* Mic Bowman
64 65
65 66
66LSL Devs 67LSL Devs
diff --git a/OpenSim/Region/ScriptEngine/Common/LSL_BuiltIn_Commands.cs b/OpenSim/Region/ScriptEngine/Common/LSL_BuiltIn_Commands.cs
index f10a854..a32ffe2 100644
--- a/OpenSim/Region/ScriptEngine/Common/LSL_BuiltIn_Commands.cs
+++ b/OpenSim/Region/ScriptEngine/Common/LSL_BuiltIn_Commands.cs
@@ -4526,12 +4526,12 @@ namespace OpenSim.Region.ScriptEngine.Common
4526 { 4526 {
4527 int index = str.IndexOf(delimiters[i].ToString()); 4527 int index = str.IndexOf(delimiters[i].ToString());
4528 bool found = index != -1; 4528 bool found = index != -1;
4529 if (found && String.Empty != (string)delimiters[i]) 4529 if (found && String.Empty != delimiters[i].ToString())
4530 { 4530 {
4531 if ((cindex > index) || (cindex == -1)) 4531 if ((cindex > index) || (cindex == -1))
4532 { 4532 {
4533 cindex = index; 4533 cindex = index;
4534 cdeli = (string)delimiters[i]; 4534 cdeli = delimiters[i].ToString();
4535 } 4535 }
4536 dfound = dfound || found; 4536 dfound = dfound || found;
4537 } 4537 }
@@ -4541,9 +4541,14 @@ namespace OpenSim.Region.ScriptEngine.Common
4541 if (cindex > 0) 4541 if (cindex > 0)
4542 { 4542 {
4543 ret.Add(str.Substring(0, cindex)); 4543 ret.Add(str.Substring(0, cindex));
4544 if (spacers.Contains(cdeli)) 4544 // Cannot use spacers.Contains() because spacers may be either type String or LSLString
4545 for (int j = 0; j < spacers.Length; j++)
4545 { 4546 {
4546 ret.Add(cdeli); 4547 if (spacers.Data[j].ToString() == cdeli)
4548 {
4549 ret.Add(cdeli);
4550 break;
4551 }
4547 } 4552 }
4548 } 4553 }
4549 if (cindex == 0 && spacers.Contains(cdeli)) 4554 if (cindex == 0 && spacers.Contains(cdeli))
@@ -6786,7 +6791,7 @@ namespace OpenSim.Region.ScriptEngine.Common
6786 if (active[j]) 6791 if (active[j])
6787 { 6792 {
6788 // scan all of the markers 6793 // scan all of the markers
6789 if ((offset[j] = src.IndexOf((string)separray[j],beginning)) == -1) 6794 if ((offset[j] = src.IndexOf(separray[j].ToString(),beginning)) == -1)
6790 { 6795 {
6791 // not present at all 6796 // not present at all
6792 active[j] = false; 6797 active[j] = false;
@@ -6814,7 +6819,7 @@ namespace OpenSim.Region.ScriptEngine.Common
6814 if (active[j]) 6819 if (active[j])
6815 { 6820 {
6816 // scan all of the markers 6821 // scan all of the markers
6817 if ((offset[j] = src.IndexOf((string)spcarray[j-seplen], beginning)) == -1) 6822 if ((offset[j] = src.IndexOf(spcarray[j-seplen].ToString(), beginning)) == -1)
6818 { 6823 {
6819 // not present at all 6824 // not present at all
6820 active[j] = false; 6825 active[j] = false;
@@ -6849,11 +6854,11 @@ namespace OpenSim.Region.ScriptEngine.Common
6849 6854
6850 if (best < seplen) 6855 if (best < seplen)
6851 { 6856 {
6852 beginning = offset[best] + ((string)separray[best]).Length; 6857 beginning = offset[best] + (separray[best].ToString()).Length;
6853 } 6858 }
6854 else 6859 else
6855 { 6860 {
6856 beginning = offset[best] + ((string)spcarray[best - seplen]).Length; 6861 beginning = offset[best] + (spcarray[best - seplen].ToString()).Length;
6857 tokens.Add(spcarray[best - seplen]); 6862 tokens.Add(spcarray[best - seplen]);
6858 } 6863 }
6859 } 6864 }