Change a false false to be truly true - or is this statement false?

Fixes perms boo-boo
0.7.4.1
Melanie 2012-03-22 20:39:18 +00:00
parent b5d0bc2488
commit 6bc1ccf234
1 changed files with 1 additions and 1 deletions

View File

@ -458,7 +458,7 @@ namespace OpenSim.Region.CoreModules.World.Land
return false;
if ((LandData.Flags & (uint) ParcelFlags.UseAccessList) == 0)
return true;
return false;
return (!IsInLandAccessList(avatar));
}