diff options
author | Melanie Thielker | 2009-04-10 21:44:27 +0000 |
---|---|---|
committer | Melanie Thielker | 2009-04-10 21:44:27 +0000 |
commit | a7de0ae9ec9226760ce134200ee692b825993061 (patch) | |
tree | 41cd9c4817a0e01fa066ba2d42432b2a95c34b72 /OpenSim/Region/ScriptEngine/DotNetEngine | |
parent | Add an optional region module which will supply a script event, (diff) | |
download | opensim-SC_OLD-a7de0ae9ec9226760ce134200ee692b825993061.zip opensim-SC_OLD-a7de0ae9ec9226760ce134200ee692b825993061.tar.gz opensim-SC_OLD-a7de0ae9ec9226760ce134200ee692b825993061.tar.bz2 opensim-SC_OLD-a7de0ae9ec9226760ce134200ee692b825993061.tar.xz |
Make the scrpt engines ignore any script that begins with //MRM:
Diffstat (limited to 'OpenSim/Region/ScriptEngine/DotNetEngine')
-rw-r--r-- | OpenSim/Region/ScriptEngine/DotNetEngine/EventManager.cs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/OpenSim/Region/ScriptEngine/DotNetEngine/EventManager.cs b/OpenSim/Region/ScriptEngine/DotNetEngine/EventManager.cs index d05fb51..548b0ac 100644 --- a/OpenSim/Region/ScriptEngine/DotNetEngine/EventManager.cs +++ b/OpenSim/Region/ScriptEngine/DotNetEngine/EventManager.cs | |||
@@ -240,6 +240,9 @@ namespace OpenSim.Region.ScriptEngine.DotNetEngine | |||
240 | public void OnRezScript(uint localID, UUID itemID, string script, | 240 | public void OnRezScript(uint localID, UUID itemID, string script, |
241 | int startParam, bool postOnRez, string engine, int stateSource) | 241 | int startParam, bool postOnRez, string engine, int stateSource) |
242 | { | 242 | { |
243 | if (script.StartsWith("//MRM:")) | ||
244 | return; | ||
245 | |||
243 | List<IScriptModule> engines = | 246 | List<IScriptModule> engines = |
244 | new List<IScriptModule>( | 247 | new List<IScriptModule>( |
245 | myScriptEngine.World.RequestModuleInterfaces<IScriptModule>()); | 248 | myScriptEngine.World.RequestModuleInterfaces<IScriptModule>()); |