diff options
author | MW | 2009-07-12 12:32:39 +0000 |
---|---|---|
committer | MW | 2009-07-12 12:32:39 +0000 |
commit | d9a8ecf238344374274b2d5dcc7c4efa3ecd0c11 (patch) | |
tree | 8a9a1122f2d0b788934b39871f145b7d8b7e2e01 /OpenSim/Framework | |
parent | * Workaround for a bug in Vivox Server r2978, whereby channel-search.channels... (diff) | |
download | opensim-SC-d9a8ecf238344374274b2d5dcc7c4efa3ecd0c11.zip opensim-SC-d9a8ecf238344374274b2d5dcc7c4efa3ecd0c11.tar.gz opensim-SC-d9a8ecf238344374274b2d5dcc7c4efa3ecd0c11.tar.bz2 opensim-SC-d9a8ecf238344374274b2d5dcc7c4efa3ecd0c11.tar.xz |
Changed the DeRezObject event so it passes a list<uint> of localIDs in one event trigger rather than triggering the event once for every localid in the derez packet.
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 7c8b1aa..efde5ce 100644 --- a/OpenSim/Framework/IClientAPI.cs +++ b/OpenSim/Framework/IClientAPI.cs | |||
@@ -99,7 +99,7 @@ namespace OpenSim.Framework | |||
99 | public delegate void GenericCall4(Packet packet, IClientAPI remoteClient); | 99 | public delegate void GenericCall4(Packet packet, IClientAPI remoteClient); |
100 | 100 | ||
101 | public delegate void DeRezObject( | 101 | public delegate void DeRezObject( |
102 | IClientAPI remoteClient, uint localID, UUID groupID, DeRezAction action, UUID destinationID); | 102 | IClientAPI remoteClient, List<uint> localIDs, UUID groupID, DeRezAction action, UUID destinationID); |
103 | 103 | ||
104 | public delegate void GenericCall5(IClientAPI remoteClient, bool status); | 104 | public delegate void GenericCall5(IClientAPI remoteClient, bool status); |
105 | 105 | ||