aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ClientStack
diff options
context:
space:
mode:
authorJustin Clark-Casey (justincc)2013-05-09 18:12:17 +0100
committerJustin Clark-Casey (justincc)2013-05-09 18:12:17 +0100
commit3290cd09d3ecd45c52bd131ada2a793c48fd99dc (patch)
tree5ed37bddcf917762d035bc3f3f6a1c4f064e4957 /OpenSim/Region/ClientStack
parentFix issue where objects removed via llDie() would not disappear for users loo... (diff)
downloadopensim-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/ClientStack')
-rw-r--r--OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs5
1 files changed, 2 insertions, 3 deletions
diff --git a/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs b/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs
index 47dd842..e014471 100644
--- a/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs
+++ b/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs
@@ -1588,7 +1588,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP
1588 OutPacket(pc, ThrottleOutPacketType.Unknown); 1588 OutPacket(pc, ThrottleOutPacketType.Unknown);
1589 } 1589 }
1590 1590
1591 public void SendKillObject(ulong regionHandle, List<uint> localIDs) 1591 public void SendKillObject(List<uint> localIDs)
1592 { 1592 {
1593// m_log.DebugFormat("[CLIENT]: Sending KillObjectPacket to {0} for {1} in {2}", Name, localID, regionHandle); 1593// m_log.DebugFormat("[CLIENT]: Sending KillObjectPacket to {0} for {1} in {2}", Name, localID, regionHandle);
1594 1594
@@ -11555,8 +11555,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP
11555 if (part == null) 11555 if (part == null)
11556 { 11556 {
11557 // It's a ghost! tell the client to delete it from view. 11557 // It's a ghost! tell the client to delete it from view.
11558 simClient.SendKillObject(Scene.RegionInfo.RegionHandle, 11558 simClient.SendKillObject(new List<uint> { localId });
11559 new List<uint> { localId });
11560 } 11559 }
11561 else 11560 else
11562 { 11561 {