diff options
author | Tedd Hansen | 2007-08-25 21:35:03 +0000 |
---|---|---|
committer | Tedd Hansen | 2007-08-25 21:35:03 +0000 |
commit | d9b9b1651367de4432b22282b21b1b69c1a23141 (patch) | |
tree | b861c6a274814018c11b71ac0336149558d553d6 /OpenSim/Region/ScriptEngine/Common | |
parent | Applied dalien's libsl login patch (should now allow libsl clients to once ag... (diff) | |
download | opensim-SC_OLD-d9b9b1651367de4432b22282b21b1b69c1a23141.zip opensim-SC_OLD-d9b9b1651367de4432b22282b21b1b69c1a23141.tar.gz opensim-SC_OLD-d9b9b1651367de4432b22282b21b1b69c1a23141.tar.bz2 opensim-SC_OLD-d9b9b1651367de4432b22282b21b1b69c1a23141.tar.xz |
Script compiler should now show error on correct line number in original LSL-script.
Diffstat (limited to 'OpenSim/Region/ScriptEngine/Common')
-rw-r--r-- | OpenSim/Region/ScriptEngine/Common/Executor.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Region/ScriptEngine/Common/Executor.cs b/OpenSim/Region/ScriptEngine/Common/Executor.cs index 363d81e..e3d574b 100644 --- a/OpenSim/Region/ScriptEngine/Common/Executor.cs +++ b/OpenSim/Region/ScriptEngine/Common/Executor.cs | |||
@@ -57,7 +57,7 @@ namespace OpenSim.Region.ScriptEngine.Common | |||
57 | 57 | ||
58 | //type.InvokeMember(EventName, BindingFlags.InvokeMethod, null, m_Script, args); | 58 | //type.InvokeMember(EventName, BindingFlags.InvokeMethod, null, m_Script, args); |
59 | 59 | ||
60 | Console.WriteLine("ScriptEngine Executor.ExecuteEvent: \"" + EventName + "\""); | 60 | //Console.WriteLine("ScriptEngine Executor.ExecuteEvent: \"" + EventName + "\""); |
61 | 61 | ||
62 | if (Events.ContainsKey(EventName) == false) | 62 | if (Events.ContainsKey(EventName) == false) |
63 | { | 63 | { |
@@ -81,7 +81,7 @@ namespace OpenSim.Region.ScriptEngine.Common | |||
81 | 81 | ||
82 | if (ev == null) // No event by that name! | 82 | if (ev == null) // No event by that name! |
83 | { | 83 | { |
84 | Console.WriteLine("ScriptEngine Can not find any event named: \"" + EventName + "\""); | 84 | //Console.WriteLine("ScriptEngine Can not find any event named: \"" + EventName + "\""); |
85 | return; | 85 | return; |
86 | } | 86 | } |
87 | 87 | ||