aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/CoreModules/Avatar/Attachments/AttachmentsModule.cs
diff options
context:
space:
mode:
authorJustin Clark-Casey (justincc)2013-03-29 02:21:38 +0000
committerJustin Clark-Casey (justincc)2013-03-29 02:21:38 +0000
commit23ae4c0a4d813763bcc39db7693850a21727d7f2 (patch)
treec1707918586c71aba48e282ffcd53f0df8cf6e60 /OpenSim/Region/CoreModules/Avatar/Attachments/AttachmentsModule.cs
parentRevert "Try eliminating the pause before auto-reteleporting for a megaregion ... (diff)
downloadopensim-SC_OLD-23ae4c0a4d813763bcc39db7693850a21727d7f2.zip
opensim-SC_OLD-23ae4c0a4d813763bcc39db7693850a21727d7f2.tar.gz
opensim-SC_OLD-23ae4c0a4d813763bcc39db7693850a21727d7f2.tar.bz2
opensim-SC_OLD-23ae4c0a4d813763bcc39db7693850a21727d7f2.tar.xz
Fix bug where CHANGED_REGION and/or CHANGED_TELEPORT weren't firing for scripts in attachments.
This was because the script resumption in AttachmentsModule was firing the attach event instead. Had to reinstate the code in 285bd3a do we can resume the scripts there instead, though the bug existed before its removal. This is to resolve http://opensimulator.org/mantis/view.php?id=6578
Diffstat (limited to 'OpenSim/Region/CoreModules/Avatar/Attachments/AttachmentsModule.cs')
-rw-r--r--OpenSim/Region/CoreModules/Avatar/Attachments/AttachmentsModule.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/CoreModules/Avatar/Attachments/AttachmentsModule.cs b/OpenSim/Region/CoreModules/Avatar/Attachments/AttachmentsModule.cs
index b7f4303..29a6478 100644
--- a/OpenSim/Region/CoreModules/Avatar/Attachments/AttachmentsModule.cs
+++ b/OpenSim/Region/CoreModules/Avatar/Attachments/AttachmentsModule.cs
@@ -328,7 +328,7 @@ namespace OpenSim.Region.CoreModules.Avatar.Attachments
328 if (!Enabled) 328 if (!Enabled)
329 return false; 329 return false;
330 330
331 return AttachObjectInternal(sp, group, attachmentPt, silent, addToInventory, true, append); 331 return AttachObjectInternal(sp, group, attachmentPt, silent, addToInventory, false, append);
332 } 332 }
333 333
334 /// <summary> 334 /// <summary>