diff options
Diffstat (limited to 'OpenSim/Region/ScriptEngine/DotNetEngine/Compiler/LSL/LSL2CSConverter.cs')
-rw-r--r-- | OpenSim/Region/ScriptEngine/DotNetEngine/Compiler/LSL/LSL2CSConverter.cs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/OpenSim/Region/ScriptEngine/DotNetEngine/Compiler/LSL/LSL2CSConverter.cs b/OpenSim/Region/ScriptEngine/DotNetEngine/Compiler/LSL/LSL2CSConverter.cs index 0c28617..bbd6839 100644 --- a/OpenSim/Region/ScriptEngine/DotNetEngine/Compiler/LSL/LSL2CSConverter.cs +++ b/OpenSim/Region/ScriptEngine/DotNetEngine/Compiler/LSL/LSL2CSConverter.cs | |||
@@ -53,6 +53,7 @@ namespace OpenSim.Region.ScriptEngine.DotNetEngine.Compiler.LSL | |||
53 | 53 | ||
54 | public string Convert(string Script) | 54 | public string Convert(string Script) |
55 | { | 55 | { |
56 | quotes.Clear(); | ||
56 | string Return = ""; | 57 | string Return = ""; |
57 | Script = " \r\n" + Script; | 58 | Script = " \r\n" + Script; |
58 | 59 | ||
@@ -310,6 +311,9 @@ namespace OpenSim.Region.ScriptEngine.DotNetEngine.Compiler.LSL | |||
310 | Return += Script; | 311 | Return += Script; |
311 | Return += "} }\r\n"; | 312 | Return += "} }\r\n"; |
312 | 313 | ||
314 | |||
315 | quotes.Clear(); | ||
316 | |||
313 | return Return; | 317 | return Return; |
314 | } | 318 | } |
315 | } | 319 | } |