diff options
author | Melanie Thielker | 2008-09-26 02:51:00 +0000 |
---|---|---|
committer | Melanie Thielker | 2008-09-26 02:51:00 +0000 |
commit | c21a8b99694e459408a9ccc43e525928038b2b22 (patch) | |
tree | 21190b513065cc7b1f3442d2cf2ed9ce1d2077f4 /OpenSim/Region/ScriptEngine/Shared/Instance | |
parent | Mantis#2265. Thank you kindly, Idb for a patch that: (diff) | |
download | opensim-SC_OLD-c21a8b99694e459408a9ccc43e525928038b2b22.zip opensim-SC_OLD-c21a8b99694e459408a9ccc43e525928038b2b22.tar.gz opensim-SC_OLD-c21a8b99694e459408a9ccc43e525928038b2b22.tar.bz2 opensim-SC_OLD-c21a8b99694e459408a9ccc43e525928038b2b22.tar.xz |
Full API convergence. Api is back in LSL_Api.cs and OSSL_Api.cs.
The binaries are still different, but that is only a small step away now.
The OSSLPrim has been removed. This commit will breal all scripts
using Prim.Scale(), etc, syntax. It was not secure and will have to
be brought back in another form.
Diffstat (limited to 'OpenSim/Region/ScriptEngine/Shared/Instance')
-rw-r--r-- | OpenSim/Region/ScriptEngine/Shared/Instance/ScriptInstance.cs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/OpenSim/Region/ScriptEngine/Shared/Instance/ScriptInstance.cs b/OpenSim/Region/ScriptEngine/Shared/Instance/ScriptInstance.cs index 6e6d169..c8d60af 100644 --- a/OpenSim/Region/ScriptEngine/Shared/Instance/ScriptInstance.cs +++ b/OpenSim/Region/ScriptEngine/Shared/Instance/ScriptInstance.cs | |||
@@ -443,6 +443,8 @@ namespace OpenSim.Region.ScriptEngine.Shared.Instance | |||
443 | new DetectParams[0])); | 443 | new DetectParams[0])); |
444 | PostEvent(new EventParams("state_entry", new Object[0], | 444 | PostEvent(new EventParams("state_entry", new Object[0], |
445 | new DetectParams[0])); | 445 | new DetectParams[0])); |
446 | |||
447 | throw new EventAbortException(); | ||
446 | } | 448 | } |
447 | 449 | ||
448 | public void PostEvent(EventParams data) | 450 | public void PostEvent(EventParams data) |
@@ -733,6 +735,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.Instance | |||
733 | m_SaveState = true; | 735 | m_SaveState = true; |
734 | PostEvent(new EventParams("state_entry", | 736 | PostEvent(new EventParams("state_entry", |
735 | new Object[0], new DetectParams[0])); | 737 | new Object[0], new DetectParams[0])); |
738 | throw new EventAbortException(); | ||
736 | } | 739 | } |
737 | } | 740 | } |
738 | 741 | ||