diff options
author | Melanie Thielker | 2008-10-06 00:09:49 +0000 |
---|---|---|
committer | Melanie Thielker | 2008-10-06 00:09:49 +0000 |
commit | 6ab5b523f8b6bdd056cb033c17811ae720564428 (patch) | |
tree | a683bb6124e3988ba7c59a02c306edbe39f7d13f /OpenSim/Framework/IClientAPI.cs | |
parent | * Green dots on the mainmap for avatar. (diff) | |
download | opensim-SC_OLD-6ab5b523f8b6bdd056cb033c17811ae720564428.zip opensim-SC_OLD-6ab5b523f8b6bdd056cb033c17811ae720564428.tar.gz opensim-SC_OLD-6ab5b523f8b6bdd056cb033c17811ae720564428.tar.bz2 opensim-SC_OLD-6ab5b523f8b6bdd056cb033c17811ae720564428.tar.xz |
Implements ObjectOwner god mode packet (Set Owner To Me admin option)
Diffstat (limited to 'OpenSim/Framework/IClientAPI.cs')
-rw-r--r-- | OpenSim/Framework/IClientAPI.cs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/OpenSim/Framework/IClientAPI.cs b/OpenSim/Framework/IClientAPI.cs index 7095387..dbaa0a8 100644 --- a/OpenSim/Framework/IClientAPI.cs +++ b/OpenSim/Framework/IClientAPI.cs | |||
@@ -308,6 +308,7 @@ namespace OpenSim.Framework | |||
308 | public delegate void DeactivateGesture(IClientAPI client, UUID gestureid); | 308 | public delegate void DeactivateGesture(IClientAPI client, UUID gestureid); |
309 | 309 | ||
310 | public delegate void TerrainUnacked(IClientAPI remoteClient, int patchX, int patchY); | 310 | public delegate void TerrainUnacked(IClientAPI remoteClient, int patchX, int patchY); |
311 | public delegate void ObjectOwner(IClientAPI remoteClient, UUID ownerID, UUID groupID, List<uint> localIDs); | ||
311 | 312 | ||
312 | public delegate void DirPlacesQuery(IClientAPI remoteClient, UUID queryID, string queryText, int queryFlags, int category, string simName, int queryStart); | 313 | public delegate void DirPlacesQuery(IClientAPI remoteClient, UUID queryID, string queryText, int queryFlags, int category, string simName, int queryStart); |
313 | 314 | ||
@@ -546,6 +547,7 @@ namespace OpenSim.Framework | |||
546 | event TerrainUnacked OnUnackedTerrain; | 547 | event TerrainUnacked OnUnackedTerrain; |
547 | event ActivateGesture OnActivateGesture; | 548 | event ActivateGesture OnActivateGesture; |
548 | event DeactivateGesture OnDeactivateGesture; | 549 | event DeactivateGesture OnDeactivateGesture; |
550 | event ObjectOwner OnObjectOwner; | ||
549 | 551 | ||
550 | event DirPlacesQuery OnDirPlacesQuery; | 552 | event DirPlacesQuery OnDirPlacesQuery; |
551 | 553 | ||