aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ScriptEngine/Common/LSL_Types.cs
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/Region/ScriptEngine/Common/LSL_Types.cs')
-rw-r--r--OpenSim/Region/ScriptEngine/Common/LSL_Types.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Region/ScriptEngine/Common/LSL_Types.cs b/OpenSim/Region/ScriptEngine/Common/LSL_Types.cs
index bfdc686..1e2e573 100644
--- a/OpenSim/Region/ScriptEngine/Common/LSL_Types.cs
+++ b/OpenSim/Region/ScriptEngine/Common/LSL_Types.cs
@@ -1295,7 +1295,7 @@ namespace OpenSim.Region.ScriptEngine.Common
1295 1295
1296 public override bool Equals(Object o) 1296 public override bool Equals(Object o)
1297 { 1297 {
1298 if(!(o is LSLInteger)) 1298 if (!(o is LSLInteger))
1299 return false; 1299 return false;
1300 return value == ((LSLInteger)o).value; 1300 return value == ((LSLInteger)o).value;
1301 } 1301 }
@@ -1452,7 +1452,7 @@ namespace OpenSim.Region.ScriptEngine.Common
1452 1452
1453 public override bool Equals(Object o) 1453 public override bool Equals(Object o)
1454 { 1454 {
1455 if(!(o is LSLFloat)) 1455 if (!(o is LSLFloat))
1456 return false; 1456 return false;
1457 return value == ((LSLFloat)o).value; 1457 return value == ((LSLFloat)o).value;
1458 } 1458 }