aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim
diff options
context:
space:
mode:
authorMelanie2012-03-22 20:39:18 +0000
committerDiva Canto2012-03-22 14:34:33 -0700
commit50c99fcda6d57a55471b3effb04547e796c11537 (patch)
treee1bd7863fec092b393f4eea96b7d8eab6bef4cb1 /OpenSim
parentRework Diva's patch to simplify it (diff)
downloadopensim-SC_OLD-50c99fcda6d57a55471b3effb04547e796c11537.zip
opensim-SC_OLD-50c99fcda6d57a55471b3effb04547e796c11537.tar.gz
opensim-SC_OLD-50c99fcda6d57a55471b3effb04547e796c11537.tar.bz2
opensim-SC_OLD-50c99fcda6d57a55471b3effb04547e796c11537.tar.xz
Change a false false to be truly true - or is this statement false?
Fixes perms boo-boo
Diffstat (limited to 'OpenSim')
-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 }