aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
-rw-r--r--OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs3
1 files changed, 2 insertions, 1 deletions
diff --git a/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs b/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs
index 7dae53a..d5e611c 100644
--- a/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs
+++ b/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs
@@ -5475,7 +5475,8 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api
5475 // for completion and should LSL_Key ever be implemented 5475 // for completion and should LSL_Key ever be implemented
5476 // as it's own struct 5476 // as it's own struct
5477 else if (!(src.Data[index] is LSL_String || 5477 else if (!(src.Data[index] is LSL_String ||
5478 src.Data[index] is LSL_Key)) 5478 src.Data[index] is LSL_Key ||
5479 src.Data[index] is String))
5479 { 5480 {
5480 return ""; 5481 return "";
5481 } 5482 }