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

Fixes perms boo-boo
This commit is contained in:
Melanie
2012-03-22 20:39:18 +00:00
parent b5d0bc2488
commit 6bc1ccf234

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));
}