Update svn properties, minor formatting cleanup.

This commit is contained in:
Jeff Ames
2008-08-16 17:26:25 +00:00
parent 80186a68df
commit 6fa26f5b41
11 changed files with 192 additions and 192 deletions

View File

@@ -246,12 +246,12 @@ namespace OpenSim.Region.Environment.Modules.World.Permissions
if (m_scene.RegionInfo.EstateSettings.EstateOwner == user)
return true;
}
if(m_allowGridGods)
if (m_allowGridGods)
{
CachedUserInfo profile = m_scene.CommsManager.UserProfileCacheService.GetUserDetails(user);
if(profile != null && profile.UserProfile != null)
if (profile != null && profile.UserProfile != null)
{
if(profile.UserProfile.GodLevel >= 200)
if (profile.UserProfile.GodLevel >= 200)
return true;
}
}