diff options
author | Melanie | 2012-03-22 20:39:18 +0000 |
---|---|---|
committer | Melanie | 2012-03-22 20:39:18 +0000 |
commit | 6bc1ccf234e3c754340c3d589d89a3b73ebba4d8 (patch) | |
tree | 1d98d4bf75c77f2e0071451d0c125973818aacb2 /OpenSim/Region | |
parent | Rework Diva's patch to simplify it (diff) | |
download | opensim-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')
-rw-r--r-- | OpenSim/Region/CoreModules/World/Land/LandObject.cs | 2 |
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 | } |