diff options
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 'OpenSim/Framework')
-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 | ||