diff options
author | Tom | 2011-01-26 14:20:39 -0800 |
---|---|---|
committer | Tom | 2011-01-26 14:20:39 -0800 |
commit | 3ecf712e4dd5318442e7c853eb43299840594ce5 (patch) | |
tree | 9ba1930ba8f11daddb85e26155b61435e95c4ab8 /OpenSim/Region/CoreModules/Agent | |
parent | Revert my previous SHA1 commit in favour of a better implementation (diff) | |
download | opensim-SC-3ecf712e4dd5318442e7c853eb43299840594ce5.zip opensim-SC-3ecf712e4dd5318442e7c853eb43299840594ce5.tar.gz opensim-SC-3ecf712e4dd5318442e7c853eb43299840594ce5.tar.bz2 opensim-SC-3ecf712e4dd5318442e7c853eb43299840594ce5.tar.xz |
Add userFlags check to isBanned. This checks bans against DenyAnonymous and DenyMinors. Note that the ban doesn't actually work yet due to some stuff mel's working on .
Diffstat (limited to 'OpenSim/Region/CoreModules/Agent')
-rw-r--r-- | OpenSim/Region/CoreModules/Agent/Capabilities/CapabilitiesModule.cs | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/OpenSim/Region/CoreModules/Agent/Capabilities/CapabilitiesModule.cs b/OpenSim/Region/CoreModules/Agent/Capabilities/CapabilitiesModule.cs index c023a6f..cbc2fd6 100644 --- a/OpenSim/Region/CoreModules/Agent/Capabilities/CapabilitiesModule.cs +++ b/OpenSim/Region/CoreModules/Agent/Capabilities/CapabilitiesModule.cs | |||
@@ -88,7 +88,13 @@ namespace OpenSim.Region.CoreModules.Agent.Capabilities | |||
88 | 88 | ||
89 | public void AddCapsHandler(UUID agentId) | 89 | public void AddCapsHandler(UUID agentId) |
90 | { | 90 | { |
91 | if (m_scene.RegionInfo.EstateSettings.IsBanned(agentId)) | 91 | int flags = 0; |
92 | ScenePresence sp; | ||
93 | if (m_scene.TryGetScenePresence(agentId, out sp)) | ||
94 | { | ||
95 | flags = sp.UserFlags; | ||
96 | } | ||
97 | if (m_scene.RegionInfo.EstateSettings.IsBanned(agentId, flags)) | ||
92 | return; | 98 | return; |
93 | 99 | ||
94 | String capsObjectPath = GetCapsPath(agentId); | 100 | String capsObjectPath = GetCapsPath(agentId); |