diff options
author | Tedd Hansen | 2008-02-07 15:31:22 +0000 |
---|---|---|
committer | Tedd Hansen | 2008-02-07 15:31:22 +0000 |
commit | c997cc97bbf01cf2616738babd269fdcc3913e34 (patch) | |
tree | bbb8982ac132c318c03f53c07648e6d9d89fe20f /OpenSim/Region | |
parent | * Fixed negative child agents in the sim stats. (diff) | |
download | opensim-SC_OLD-c997cc97bbf01cf2616738babd269fdcc3913e34.zip opensim-SC_OLD-c997cc97bbf01cf2616738babd269fdcc3913e34.tar.gz opensim-SC_OLD-c997cc97bbf01cf2616738babd269fdcc3913e34.tar.bz2 opensim-SC_OLD-c997cc97bbf01cf2616738babd269fdcc3913e34.tar.xz |
VB.Net compiler might work on Windows now.
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Region/ScriptEngine/DotNetEngine/Compiler/LSL/Compiler.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/ScriptEngine/DotNetEngine/Compiler/LSL/Compiler.cs b/OpenSim/Region/ScriptEngine/DotNetEngine/Compiler/LSL/Compiler.cs index 10959c5..2173178 100644 --- a/OpenSim/Region/ScriptEngine/DotNetEngine/Compiler/LSL/Compiler.cs +++ b/OpenSim/Region/ScriptEngine/DotNetEngine/Compiler/LSL/Compiler.cs | |||
@@ -276,11 +276,11 @@ namespace OpenSim.Region.ScriptEngine.DotNetEngine.Compiler.LSL | |||
276 | "} }\r\n"; | 276 | "} }\r\n"; |
277 | break; | 277 | break; |
278 | case enumCompileType.vb: | 278 | case enumCompileType.vb: |
279 | // "Public Sub New()\nEnd Sub: " + | ||
279 | compileScript = String.Empty + | 280 | compileScript = String.Empty + |
280 | "Imports OpenSim.Region.ScriptEngine.Common: Imports System.Collections.Generic: " + | 281 | "Imports OpenSim.Region.ScriptEngine.Common: Imports System.Collections.Generic: " + |
281 | String.Empty + "NameSpace SecondLife:" + | 282 | String.Empty + "NameSpace SecondLife:" + |
282 | String.Empty + "Public Class Script: Inherits OpenSim.Region.ScriptEngine.Common.LSL_BaseClass: " + | 283 | String.Empty + "Public Class Script: Inherits OpenSim.Region.ScriptEngine.Common.LSL_BaseClass: " + |
283 | @"Public Sub New(): End Sub: " + | ||
284 | compileScript + | 284 | compileScript + |
285 | ":End Class :End Namespace\r\n"; | 285 | ":End Class :End Namespace\r\n"; |
286 | break; | 286 | break; |