aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ScriptEngine/Common/LSL_Types.cs
diff options
context:
space:
mode:
authorTeravus Ovares2008-05-11 12:01:12 +0000
committerTeravus Ovares2008-05-11 12:01:12 +0000
commitefc680f45b71be33aeb36165f2d82988a3c13aa9 (patch)
tree6e0850ca693b4aac73ce3daf66724ee94857f765 /OpenSim/Region/ScriptEngine/Common/LSL_Types.cs
parent* Mantis #1127 - Patch to implement depreciated patches. Thanks middlelink! (diff)
downloadopensim-SC_OLD-efc680f45b71be33aeb36165f2d82988a3c13aa9.zip
opensim-SC_OLD-efc680f45b71be33aeb36165f2d82988a3c13aa9.tar.gz
opensim-SC_OLD-efc680f45b71be33aeb36165f2d82988a3c13aa9.tar.bz2
opensim-SC_OLD-efc680f45b71be33aeb36165f2d82988a3c13aa9.tar.xz
* Changed implicit string conversion to LSL_Types.LSLString in money event of the key of the payer to an Explicit one.
* Fixes Mantis: #1045
Diffstat (limited to 'OpenSim/Region/ScriptEngine/Common/LSL_Types.cs')
-rw-r--r--OpenSim/Region/ScriptEngine/Common/LSL_Types.cs3
1 files changed, 3 insertions, 0 deletions
diff --git a/OpenSim/Region/ScriptEngine/Common/LSL_Types.cs b/OpenSim/Region/ScriptEngine/Common/LSL_Types.cs
index c904b1d..4bdb0ba 100644
--- a/OpenSim/Region/ScriptEngine/Common/LSL_Types.cs
+++ b/OpenSim/Region/ScriptEngine/Common/LSL_Types.cs
@@ -1110,6 +1110,8 @@ namespace OpenSim.Region.ScriptEngine.Common
1110 } 1110 }
1111 } 1111 }
1112 1112
1113
1114
1113 static public implicit operator String(LSLString s) 1115 static public implicit operator String(LSLString s)
1114 { 1116 {
1115 return s.m_string; 1117 return s.m_string;
@@ -1272,6 +1274,7 @@ namespace OpenSim.Region.ScriptEngine.Common
1272 i.value++; 1274 i.value++;
1273 return i; 1275 return i;
1274 } 1276 }
1277
1275 1278
1276 public static LSLInteger operator --(LSLInteger i) 1279 public static LSLInteger operator --(LSLInteger i)
1277 { 1280 {