diff options
author | Justin Clark-Casey (justincc) | 2014-10-04 00:14:28 +0100 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2014-10-04 00:16:47 +0100 |
commit | cbd428cff3c1fdaf246cb08d068688a7bc5d03e3 (patch) | |
tree | f04240508e5cdcc5ce90f25ddaf37075ccc8fd58 /OpenSim/Region/Framework/Scenes | |
parent | minor: Comment out received seed caps request logging for now (diff) | |
download | opensim-SC_OLD-cbd428cff3c1fdaf246cb08d068688a7bc5d03e3.zip opensim-SC_OLD-cbd428cff3c1fdaf246cb08d068688a7bc5d03e3.tar.gz opensim-SC_OLD-cbd428cff3c1fdaf246cb08d068688a7bc5d03e3.tar.bz2 opensim-SC_OLD-cbd428cff3c1fdaf246cb08d068688a7bc5d03e3.tar.xz |
Add LSL transaction_result event.
This is cinderblocks' transaction_result.diff from http://opensimulator.org/mantis/view.php?id=7329 but I have used lsl.parser.cs and lsl.lexer.cs files generated directly from opensim-libs rather than those supplied in the patch.
I also added scriptEvents.transaction_reuslt.
The required parser/lexer generation file changes were made in commit d564f28 in the opensim-libs repo.
Thanks!
Diffstat (limited to 'OpenSim/Region/Framework/Scenes')
-rw-r--r-- | OpenSim/Region/Framework/Scenes/SceneObjectGroup.cs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/OpenSim/Region/Framework/Scenes/SceneObjectGroup.cs b/OpenSim/Region/Framework/Scenes/SceneObjectGroup.cs index 205631f..8535587 100644 --- a/OpenSim/Region/Framework/Scenes/SceneObjectGroup.cs +++ b/OpenSim/Region/Framework/Scenes/SceneObjectGroup.cs | |||
@@ -75,6 +75,7 @@ namespace OpenSim.Region.Framework.Scenes | |||
75 | touch = 8, | 75 | touch = 8, |
76 | touch_end = 536870912, | 76 | touch_end = 536870912, |
77 | touch_start = 2097152, | 77 | touch_start = 2097152, |
78 | transaction_result = 33554432, | ||
78 | object_rez = 4194304 | 79 | object_rez = 4194304 |
79 | } | 80 | } |
80 | 81 | ||