aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs')
-rw-r--r--OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs6
1 files changed, 2 insertions, 4 deletions
diff --git a/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs b/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs
index 6f9e0a0..d141ffe 100644
--- a/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs
+++ b/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs
@@ -4167,12 +4167,10 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api
4167 try 4167 try
4168 { 4168 {
4169 if (src.Data[index] is LSL_Integer) 4169 if (src.Data[index] is LSL_Integer)
4170 return Convert.ToInt32(((LSL_Integer) src.Data[index]).value); 4170 return (LSL_Integer) src.Data[index];
4171 else if (src.Data[index] is LSL_Float) 4171 else if (src.Data[index] is LSL_Float)
4172 return Convert.ToInt32(((LSL_Float) src.Data[index]).value); 4172 return Convert.ToInt32(((LSL_Float) src.Data[index]).value);
4173 else if (src.Data[index] is LSL_String) 4173 return new LSL_Integer(src.Data[index].ToString());
4174 return Convert.ToInt32(((LSL_String) src.Data[index]).m_string);
4175 return Convert.ToInt32(src.Data[index]);
4176 } 4174 }
4177 catch (FormatException) 4175 catch (FormatException)
4178 { 4176 {