aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ScriptEngine/DotNetEngine/ScriptManager.cs
diff options
context:
space:
mode:
authorMelanie Thielker2008-09-26 20:18:31 +0000
committerMelanie Thielker2008-09-26 20:18:31 +0000
commitb4164223496812ccf8c6d0a938f57a12595d68a0 (patch)
tree9d32f3fbedb0bd024297b23e45617eaf5980fb80 /OpenSim/Region/ScriptEngine/DotNetEngine/ScriptManager.cs
parentFix listeners in multi-region instances (diff)
downloadopensim-SC_OLD-b4164223496812ccf8c6d0a938f57a12595d68a0.zip
opensim-SC_OLD-b4164223496812ccf8c6d0a938f57a12595d68a0.tar.gz
opensim-SC_OLD-b4164223496812ccf8c6d0a938f57a12595d68a0.tar.bz2
opensim-SC_OLD-b4164223496812ccf8c6d0a938f57a12595d68a0.tar.xz
Kill "Compile successful" message when rezzing prims/wearing attachments
Changes behavior to send on_rez event to prims when rezzed from agent inventory.
Diffstat (limited to 'OpenSim/Region/ScriptEngine/DotNetEngine/ScriptManager.cs')
-rw-r--r--OpenSim/Region/ScriptEngine/DotNetEngine/ScriptManager.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Region/ScriptEngine/DotNetEngine/ScriptManager.cs b/OpenSim/Region/ScriptEngine/DotNetEngine/ScriptManager.cs
index b593894..8329805 100644
--- a/OpenSim/Region/ScriptEngine/DotNetEngine/ScriptManager.cs
+++ b/OpenSim/Region/ScriptEngine/DotNetEngine/ScriptManager.cs
@@ -145,7 +145,7 @@ namespace OpenSim.Region.ScriptEngine.DotNetEngine
145 LSLCompiler.PerformScriptCompile(Script, 145 LSLCompiler.PerformScriptCompile(Script,
146 assetID.ToString()); 146 assetID.ToString());
147 147
148 if (presence != null) 148 if (presence != null && (!postOnRez))
149 presence.ControllingClient.SendAgentAlertMessage( 149 presence.ControllingClient.SendAgentAlertMessage(
150 "Compile successful", false); 150 "Compile successful", false);
151 151
@@ -205,7 +205,7 @@ namespace OpenSim.Region.ScriptEngine.DotNetEngine
205 } 205 }
206 catch (Exception e) // LEGIT: User Scripting 206 catch (Exception e) // LEGIT: User Scripting
207 { 207 {
208 if (presence != null) 208 if (presence != null && (!postOnRez))
209 presence.ControllingClient.SendAgentAlertMessage( 209 presence.ControllingClient.SendAgentAlertMessage(
210 "Script saved with errors, check debug window!", 210 "Script saved with errors, check debug window!",
211 false); 211 false);