aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ScriptEngine/XEngine/EventManager.cs
diff options
context:
space:
mode:
authorMelanie2010-07-11 13:09:11 +0100
committerMelanie2010-07-11 13:09:11 +0100
commiteaea89bbb74ad219a01c5dd81e1e4b5d8c1a15a4 (patch)
tree5ee0558b581da8418ed19e04bf9cc8b9d2ea1f8f /OpenSim/Region/ScriptEngine/XEngine/EventManager.cs
parentMake taken items go back to the folder they came from (diff)
downloadopensim-SC_OLD-eaea89bbb74ad219a01c5dd81e1e4b5d8c1a15a4.zip
opensim-SC_OLD-eaea89bbb74ad219a01c5dd81e1e4b5d8c1a15a4.tar.gz
opensim-SC_OLD-eaea89bbb74ad219a01c5dd81e1e4b5d8c1a15a4.tar.bz2
opensim-SC_OLD-eaea89bbb74ad219a01c5dd81e1e4b5d8c1a15a4.tar.xz
Remove localID from script controls data. It won't transfer to another
region anyway
Diffstat (limited to '')
-rw-r--r--OpenSim/Region/ScriptEngine/XEngine/EventManager.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Region/ScriptEngine/XEngine/EventManager.cs b/OpenSim/Region/ScriptEngine/XEngine/EventManager.cs
index 09b79d0..0ac8b5c 100644
--- a/OpenSim/Region/ScriptEngine/XEngine/EventManager.cs
+++ b/OpenSim/Region/ScriptEngine/XEngine/EventManager.cs
@@ -356,9 +356,9 @@ namespace OpenSim.Region.ScriptEngine.XEngine
356 // timer: not handled here 356 // timer: not handled here
357 // listen: not handled here 357 // listen: not handled here
358 358
359 public void control(uint localID, UUID itemID, UUID agentID, uint held, uint change) 359 public void control(UUID itemID, UUID agentID, uint held, uint change)
360 { 360 {
361 myScriptEngine.PostObjectEvent(localID, new EventParams( 361 myScriptEngine.PostScriptEvent(itemID, new EventParams(
362 "control",new object[] { 362 "control",new object[] {
363 new LSL_Types.LSLString(agentID.ToString()), 363 new LSL_Types.LSLString(agentID.ToString()),
364 new LSL_Types.LSLInteger(held), 364 new LSL_Types.LSLInteger(held),