Quick fix to make the estate ban list effective again, when the region

crossing is also a sim crossing. Prevents the CAPS handler from being set
up for a banned user,making them redmap out.
Dirty hack, temporary until I can work out how to do it right.
0.6.0-stable
Melanie Thielker 2008-07-19 06:20:57 +00:00
parent bcf74416a1
commit 351ee78d2a
1 changed files with 2 additions and 0 deletions

View File

@ -2474,6 +2474,8 @@ namespace OpenSim.Region.Environment.Scenes
/// <param name="capsObjectPath"></param>
public void AddCapsHandler(LLUUID agentId)
{
if(RegionInfo.EstateSettings.IsBanned(agentId))
return;
String capsObjectPath = GetCapsPath(agentId);
m_log.DebugFormat(