Reverse yes and no for the parcel's "public" property to make it accurately

reflect parcel status
0.6.0-stable
Melanie Thielker 2008-09-18 18:54:27 +00:00
parent 903fbd1f06
commit 6cfe4784cb
1 changed files with 2 additions and 2 deletions

View File

@ -291,9 +291,9 @@ namespace OpenSim.Region.DataSnapshot.Providers
private string GetPublicPermissions(LandData parcel)
{
if ((parcel.Flags & (uint)Parcel.ParcelFlags.UseAccessList) == (uint)Parcel.ParcelFlags.UseAccessList)
return "yes";
else
return "no";
else
return "yes";
}