diff options
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Region/ScriptEngine/Shared/CodeTools/CSCodeGenerator.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Region/ScriptEngine/Shared/CodeTools/CSCodeGenerator.cs b/OpenSim/Region/ScriptEngine/Shared/CodeTools/CSCodeGenerator.cs index 5a98f4d..86d6188 100644 --- a/OpenSim/Region/ScriptEngine/Shared/CodeTools/CSCodeGenerator.cs +++ b/OpenSim/Region/ScriptEngine/Shared/CodeTools/CSCodeGenerator.cs | |||
@@ -730,11 +730,11 @@ namespace OpenSim.Region.ScriptEngine.Shared.CodeTools | |||
730 | c.Value = c.Value.Insert(dotIndex, "0"); | 730 | c.Value = c.Value.Insert(dotIndex, "0"); |
731 | c.Value = "new LSL_Types.LSLFloat("+c.Value+")"; | 731 | c.Value = "new LSL_Types.LSLFloat("+c.Value+")"; |
732 | } | 732 | } |
733 | else if("LSL_Types.LSLInteger" == c.Type) | 733 | else if ("LSL_Types.LSLInteger" == c.Type) |
734 | { | 734 | { |
735 | c.Value = "new LSL_Types.LSLInteger("+c.Value+")"; | 735 | c.Value = "new LSL_Types.LSLInteger("+c.Value+")"; |
736 | } | 736 | } |
737 | else if("LSL_Types.LSLString" == c.Type) | 737 | else if ("LSL_Types.LSLString" == c.Type) |
738 | { | 738 | { |
739 | c.Value = "new LSL_Types.LSLString(\""+c.Value+"\")"; | 739 | c.Value = "new LSL_Types.LSLString(\""+c.Value+"\")"; |
740 | } | 740 | } |