aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/CoreModules/World/Land/LandObject.cs
diff options
context:
space:
mode:
authorMelanie2012-03-22 20:39:18 +0000
committerMelanie2012-03-22 20:39:18 +0000
commit6bc1ccf234e3c754340c3d589d89a3b73ebba4d8 (patch)
tree1d98d4bf75c77f2e0071451d0c125973818aacb2 /OpenSim/Region/CoreModules/World/Land/LandObject.cs
parentRework Diva's patch to simplify it (diff)
downloadopensim-SC_OLD-6bc1ccf234e3c754340c3d589d89a3b73ebba4d8.zip
opensim-SC_OLD-6bc1ccf234e3c754340c3d589d89a3b73ebba4d8.tar.gz
opensim-SC_OLD-6bc1ccf234e3c754340c3d589d89a3b73ebba4d8.tar.bz2
opensim-SC_OLD-6bc1ccf234e3c754340c3d589d89a3b73ebba4d8.tar.xz
Change a false false to be truly true - or is this statement false?
Fixes perms boo-boo
Diffstat (limited to 'OpenSim/Region/CoreModules/World/Land/LandObject.cs')
-rw-r--r--OpenSim/Region/CoreModules/World/Land/LandObject.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/CoreModules/World/Land/LandObject.cs b/OpenSim/Region/CoreModules/World/Land/LandObject.cs
index 27f0052..a0ed5a5 100644
--- a/OpenSim/Region/CoreModules/World/Land/LandObject.cs
+++ b/OpenSim/Region/CoreModules/World/Land/LandObject.cs
@@ -458,7 +458,7 @@ namespace OpenSim.Region.CoreModules.World.Land
458 return false; 458 return false;
459 459
460 if ((LandData.Flags & (uint) ParcelFlags.UseAccessList) == 0) 460 if ((LandData.Flags & (uint) ParcelFlags.UseAccessList) == 0)
461 return true; 461 return false;
462 462
463 return (!IsInLandAccessList(avatar)); 463 return (!IsInLandAccessList(avatar));
464 } 464 }