diff options
author | Jeff Ames | 2008-06-04 09:59:27 +0000 |
---|---|---|
committer | Jeff Ames | 2008-06-04 09:59:27 +0000 |
commit | 4ec4e16c809cf86a63b736d2b7b6ad7291595a5f (patch) | |
tree | cfa896ef9057228171e2ee39c4807060101ba90b /OpenSim/Region/ScriptEngine/XEngine/EventManager.cs | |
parent | * If a ThreadAbortException reaches AuthUser() then let it pass through unmol... (diff) | |
download | opensim-SC_OLD-4ec4e16c809cf86a63b736d2b7b6ad7291595a5f.zip opensim-SC_OLD-4ec4e16c809cf86a63b736d2b7b6ad7291595a5f.tar.gz opensim-SC_OLD-4ec4e16c809cf86a63b736d2b7b6ad7291595a5f.tar.bz2 opensim-SC_OLD-4ec4e16c809cf86a63b736d2b7b6ad7291595a5f.tar.xz |
Formatting cleanup, minor refactoring, svn properties.
Diffstat (limited to 'OpenSim/Region/ScriptEngine/XEngine/EventManager.cs')
-rw-r--r-- | OpenSim/Region/ScriptEngine/XEngine/EventManager.cs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/OpenSim/Region/ScriptEngine/XEngine/EventManager.cs b/OpenSim/Region/ScriptEngine/XEngine/EventManager.cs index 734c837..e9ec4be 100644 --- a/OpenSim/Region/ScriptEngine/XEngine/EventManager.cs +++ b/OpenSim/Region/ScriptEngine/XEngine/EventManager.cs | |||
@@ -199,7 +199,7 @@ namespace OpenSim.Region.ScriptEngine.XEngine | |||
199 | public void on_rez(uint localID, LLUUID itemID, int startParam) | 199 | public void on_rez(uint localID, LLUUID itemID, int startParam) |
200 | { | 200 | { |
201 | myScriptEngine.PostObjectEvent(localID, new XEventParams( | 201 | myScriptEngine.PostObjectEvent(localID, new XEventParams( |
202 | "on_rez",new object[] { | 202 | "on_rez",new object[] { |
203 | new LSL_Types.LSLInteger(startParam)}, | 203 | new LSL_Types.LSLInteger(startParam)}, |
204 | new XDetectParams[0])); | 204 | new XDetectParams[0])); |
205 | } | 205 | } |
@@ -207,7 +207,7 @@ namespace OpenSim.Region.ScriptEngine.XEngine | |||
207 | public void control(uint localID, LLUUID itemID, LLUUID agentID, uint held, uint change) | 207 | public void control(uint localID, LLUUID itemID, LLUUID agentID, uint held, uint change) |
208 | { | 208 | { |
209 | myScriptEngine.PostObjectEvent(localID, new XEventParams( | 209 | myScriptEngine.PostObjectEvent(localID, new XEventParams( |
210 | "control",new object[] { | 210 | "control",new object[] { |
211 | new LSL_Types.LSLString(agentID.ToString()), | 211 | new LSL_Types.LSLString(agentID.ToString()), |
212 | new LSL_Types.LSLInteger(held), | 212 | new LSL_Types.LSLInteger(held), |
213 | new LSL_Types.LSLInteger(change)}, | 213 | new LSL_Types.LSLInteger(change)}, |
@@ -218,7 +218,7 @@ namespace OpenSim.Region.ScriptEngine.XEngine | |||
218 | string address, string subject, string message, int numLeft) | 218 | string address, string subject, string message, int numLeft) |
219 | { | 219 | { |
220 | myScriptEngine.PostObjectEvent(localID, new XEventParams( | 220 | myScriptEngine.PostObjectEvent(localID, new XEventParams( |
221 | "email",new object[] { | 221 | "email",new object[] { |
222 | new LSL_Types.LSLString(timeSent), | 222 | new LSL_Types.LSLString(timeSent), |
223 | new LSL_Types.LSLString(address), | 223 | new LSL_Types.LSLString(address), |
224 | new LSL_Types.LSLString(subject), | 224 | new LSL_Types.LSLString(subject), |