diff options
author | UbitUmarov | 2017-01-05 18:02:59 +0000 |
---|---|---|
committer | UbitUmarov | 2017-01-05 18:02:59 +0000 |
commit | cbc3501246d5250788634f6d1b6fbd1f60661c85 (patch) | |
tree | 5983ff6f4c0ce5bce469c6b1257b9b60069cf79f /OpenSim/Region/Framework/Interfaces/IGodsModule.cs | |
parent | a few changes to estates port handling (diff) | |
download | opensim-SC-cbc3501246d5250788634f6d1b6fbd1f60661c85.zip opensim-SC-cbc3501246d5250788634f6d1b6fbd1f60661c85.tar.gz opensim-SC-cbc3501246d5250788634f6d1b6fbd1f60661c85.tar.bz2 opensim-SC-cbc3501246d5250788634f6d1b6fbd1f60661c85.tar.xz |
a few changes to Gods ( ie administrators) control
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Region/Framework/Interfaces/IGodsModule.cs | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/OpenSim/Region/Framework/Interfaces/IGodsModule.cs b/OpenSim/Region/Framework/Interfaces/IGodsModule.cs index 552ce01..1cb9a30 100644 --- a/OpenSim/Region/Framework/Interfaces/IGodsModule.cs +++ b/OpenSim/Region/Framework/Interfaces/IGodsModule.cs | |||
@@ -43,16 +43,15 @@ namespace OpenSim.Region.Framework.Interfaces | |||
43 | /// <param name="token"></param> | 43 | /// <param name="token"></param> |
44 | /// <param name="godLike"></param> | 44 | /// <param name="godLike"></param> |
45 | /// <param name="controllingClient"></param> | 45 | /// <param name="controllingClient"></param> |
46 | void RequestGodlikePowers(UUID agentID, UUID sessionID, UUID token, bool godLike, IClientAPI controllingClient); | 46 | void RequestGodlikePowers(UUID agentID, UUID sessionID, UUID token, bool godLike); |
47 | 47 | ||
48 | /// <summary> | 48 | /// <summary> |
49 | /// Kicks User specified from the simulator. This logs them off of the grid. | 49 | /// Kicks User specified from the simulator. This logs them off of the grid. |
50 | /// </summary> | 50 | /// </summary> |
51 | /// <param name="godID">The person doing the kicking</param> | 51 | /// <param name="godID">The person doing the kicking</param> |
52 | /// <param name="sessionID">The session of the person doing the kicking</param> | ||
53 | /// <param name="agentID">the person that is being kicked</param> | 52 | /// <param name="agentID">the person that is being kicked</param> |
54 | /// <param name="kickflags">This isn't used apparently</param> | 53 | /// <param name="kickflags">This isn't used apparently</param> |
55 | /// <param name="reason">The message to send to the user after it's been turned into a field</param> | 54 | /// <param name="reason">The message to send to the user after it's been turned into a field</param> |
56 | void KickUser(UUID godID, UUID sessionID, UUID agentID, uint kickflags, byte[] reason); | 55 | void KickUser(UUID godID, UUID agentID, uint kickflags, byte[] reason); |
57 | } | 56 | } |
58 | } | 57 | } |