diff options
-rw-r--r-- | OpenSim/Region/ScriptEngine/Common/LSL_BuiltIn_Commands.cs | 2 |
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 878cd20..4d80603 100644 --- a/OpenSim/Region/ScriptEngine/Common/LSL_BuiltIn_Commands.cs +++ b/OpenSim/Region/ScriptEngine/Common/LSL_BuiltIn_Commands.cs | |||
@@ -3894,7 +3894,7 @@ namespace OpenSim.Region.ScriptEngine.Common | |||
3894 | { | 3894 | { |
3895 | int index = str.IndexOf(delimiters[i].ToString()); | 3895 | int index = str.IndexOf(delimiters[i].ToString()); |
3896 | bool found = index != -1; | 3896 | bool found = index != -1; |
3897 | if (found) | 3897 | if (found && String.Empty != delimiters[i]) |
3898 | { | 3898 | { |
3899 | if ((cindex > index) || (cindex == -1)) | 3899 | if ((cindex > index) || (cindex == -1)) |
3900 | { | 3900 | { |