diff options
author | Melanie | 2010-10-08 11:31:52 +0200 |
---|---|---|
committer | Melanie | 2010-10-08 11:31:52 +0200 |
commit | 52dd547863c0cdd22f53f0efcaef11ae096855a0 (patch) | |
tree | e1b545832530f02b3485a39826555e444423aad3 /OpenSim/Framework/IClientAPI.cs | |
parent | Implement rezzing coalesced objects (diff) | |
download | opensim-SC_OLD-52dd547863c0cdd22f53f0efcaef11ae096855a0.zip opensim-SC_OLD-52dd547863c0cdd22f53f0efcaef11ae096855a0.tar.gz opensim-SC_OLD-52dd547863c0cdd22f53f0efcaef11ae096855a0.tar.bz2 opensim-SC_OLD-52dd547863c0cdd22f53f0efcaef11ae096855a0.tar.xz |
Make SendKillObject send multiple localIDs in one packet. This avoids the
halting visual behavior of large group deletes and eliminates the packet flood
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Framework/IClientAPI.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Framework/IClientAPI.cs b/OpenSim/Framework/IClientAPI.cs index 9025dda..51482a1 100644 --- a/OpenSim/Framework/IClientAPI.cs +++ b/OpenSim/Framework/IClientAPI.cs | |||
@@ -979,7 +979,7 @@ namespace OpenSim.Framework | |||
979 | /// </summary> | 979 | /// </summary> |
980 | /// <param name="regionHandle"></param> | 980 | /// <param name="regionHandle"></param> |
981 | /// <param name="localID"></param> | 981 | /// <param name="localID"></param> |
982 | void SendKillObject(ulong regionHandle, uint localID); | 982 | void SendKillObject(ulong regionHandle, List<uint> localID); |
983 | 983 | ||
984 | void SendAnimations(UUID[] animID, int[] seqs, UUID sourceAgentId, UUID[] objectIDs); | 984 | void SendAnimations(UUID[] animID, int[] seqs, UUID sourceAgentId, UUID[] objectIDs); |
985 | void SendRegionHandshake(RegionInfo regionInfo, RegionHandshakeArgs args); | 985 | void SendRegionHandshake(RegionInfo regionInfo, RegionHandshakeArgs args); |