diff options
Diffstat (limited to 'OpenSim')
-rw-r--r-- | OpenSim/Region/ScriptEngine/Common/LSL_Types.cs | 5 | ||||
-rw-r--r-- | OpenSim/Region/ScriptEngine/Shared/LSL_Types.cs | 5 |
2 files changed, 10 insertions, 0 deletions
diff --git a/OpenSim/Region/ScriptEngine/Common/LSL_Types.cs b/OpenSim/Region/ScriptEngine/Common/LSL_Types.cs index c630c27..be790d6 100644 --- a/OpenSim/Region/ScriptEngine/Common/LSL_Types.cs +++ b/OpenSim/Region/ScriptEngine/Common/LSL_Types.cs | |||
@@ -1281,6 +1281,11 @@ namespace OpenSim.Region.ScriptEngine.Common | |||
1281 | return new LSLInteger(u); | 1281 | return new LSLInteger(u); |
1282 | } | 1282 | } |
1283 | 1283 | ||
1284 | static public implicit operator LSLInteger(double d) | ||
1285 | { | ||
1286 | return new LSLInteger(d); | ||
1287 | } | ||
1288 | |||
1284 | static public bool operator ==(LSLInteger i1, LSLInteger i2) | 1289 | static public bool operator ==(LSLInteger i1, LSLInteger i2) |
1285 | { | 1290 | { |
1286 | bool ret = i1.value == i2.value; | 1291 | bool ret = i1.value == i2.value; |
diff --git a/OpenSim/Region/ScriptEngine/Shared/LSL_Types.cs b/OpenSim/Region/ScriptEngine/Shared/LSL_Types.cs index f71d584..0cddf36 100644 --- a/OpenSim/Region/ScriptEngine/Shared/LSL_Types.cs +++ b/OpenSim/Region/ScriptEngine/Shared/LSL_Types.cs | |||
@@ -1309,6 +1309,11 @@ namespace OpenSim.Region.ScriptEngine.Shared | |||
1309 | return new LSLInteger(u); | 1309 | return new LSLInteger(u); |
1310 | } | 1310 | } |
1311 | 1311 | ||
1312 | static public implicit operator LSLInteger(double d) | ||
1313 | { | ||
1314 | return new LSLInteger(d); | ||
1315 | } | ||
1316 | |||
1312 | static public bool operator ==(LSLInteger i1, LSLInteger i2) | 1317 | static public bool operator ==(LSLInteger i1, LSLInteger i2) |
1313 | { | 1318 | { |
1314 | bool ret = i1.value == i2.value; | 1319 | bool ret = i1.value == i2.value; |