diff options
author | Diva Canto | 2014-12-25 08:01:50 -0800 |
---|---|---|
committer | Diva Canto | 2014-12-25 08:01:50 -0800 |
commit | 27c34b69bf5960e02b087f9f298dcbe19f03b142 (patch) | |
tree | f299009958858da9db464dcbc84bd03beae0ca15 /OpenSim/Region/Framework/Interfaces/INPCModule.cs | |
parent | Revert "Update libomv to grab latest bug fixes for Collada upload." (diff) | |
parent | If a moap entry has EnableWhiteList but WhiteList == null, then properly bloc... (diff) | |
download | opensim-SC-27c34b69bf5960e02b087f9f298dcbe19f03b142.zip opensim-SC-27c34b69bf5960e02b087f9f298dcbe19f03b142.tar.gz opensim-SC-27c34b69bf5960e02b087f9f298dcbe19f03b142.tar.bz2 opensim-SC-27c34b69bf5960e02b087f9f298dcbe19f03b142.tar.xz |
Merge branch 'master' of ssh://opensimulator.org/var/git/opensim
Diffstat (limited to 'OpenSim/Region/Framework/Interfaces/INPCModule.cs')
-rw-r--r-- | OpenSim/Region/Framework/Interfaces/INPCModule.cs | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/OpenSim/Region/Framework/Interfaces/INPCModule.cs b/OpenSim/Region/Framework/Interfaces/INPCModule.cs index d5dcddd..478833e 100644 --- a/OpenSim/Region/Framework/Interfaces/INPCModule.cs +++ b/OpenSim/Region/Framework/Interfaces/INPCModule.cs | |||
@@ -122,6 +122,17 @@ namespace OpenSim.Region.Framework.Interfaces | |||
122 | /// <summary> | 122 | /// <summary> |
123 | /// Check if the caller has permission to manipulate the given NPC. | 123 | /// Check if the caller has permission to manipulate the given NPC. |
124 | /// </summary> | 124 | /// </summary> |
125 | /// <remarks> | ||
126 | /// A caller has permission if | ||
127 | /// * An NPC exists with the given npcID. | ||
128 | /// * The caller UUID given is UUID.Zero. | ||
129 | /// * The avatar is unowned (owner is UUID.Zero). | ||
130 | /// * The avatar is owned and the owner and callerID match. | ||
131 | /// * The avatar is owned and the callerID matches its agentID. | ||
132 | /// </remarks> | ||
133 | /// <param name="av"></param> | ||
134 | /// <param name="callerID"></param> | ||
135 | /// <returns>true if they do, false if they don't.</returns> | ||
125 | /// <param name="npcID"></param> | 136 | /// <param name="npcID"></param> |
126 | /// <param name="callerID"></param> | 137 | /// <param name="callerID"></param> |
127 | /// <returns> | 138 | /// <returns> |