diff options
author | Justin Clark-Casey (justincc) | 2013-05-09 18:12:17 +0100 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2013-05-09 18:12:17 +0100 |
commit | 3290cd09d3ecd45c52bd131ada2a793c48fd99dc (patch) | |
tree | 5ed37bddcf917762d035bc3f3f6a1c4f064e4957 /OpenSim/Region/CoreModules | |
parent | Fix issue where objects removed via llDie() would not disappear for users loo... (diff) | |
download | opensim-SC_OLD-3290cd09d3ecd45c52bd131ada2a793c48fd99dc.zip opensim-SC_OLD-3290cd09d3ecd45c52bd131ada2a793c48fd99dc.tar.gz opensim-SC_OLD-3290cd09d3ecd45c52bd131ada2a793c48fd99dc.tar.bz2 opensim-SC_OLD-3290cd09d3ecd45c52bd131ada2a793c48fd99dc.tar.xz |
remove pointless region handle paramter from IClientAPI.SendKillObject()
Diffstat (limited to 'OpenSim/Region/CoreModules')
-rw-r--r-- | OpenSim/Region/CoreModules/Avatar/Attachments/AttachmentsModule.cs | 2 |
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 7d16635..f69ec21 100644 --- a/OpenSim/Region/CoreModules/Avatar/Attachments/AttachmentsModule.cs +++ b/OpenSim/Region/CoreModules/Avatar/Attachments/AttachmentsModule.cs | |||
@@ -776,7 +776,7 @@ namespace OpenSim.Region.CoreModules.Avatar.Attachments | |||
776 | m_scene.ForEachClient( | 776 | m_scene.ForEachClient( |
777 | client => | 777 | client => |
778 | { if (client.AgentId != so.AttachedAvatar) | 778 | { if (client.AgentId != so.AttachedAvatar) |
779 | client.SendKillObject(m_scene.RegionInfo.RegionHandle, new List<uint>() { so.LocalId }); | 779 | client.SendKillObject(new List<uint>() { so.LocalId }); |
780 | }); | 780 | }); |
781 | } | 781 | } |
782 | 782 | ||