diff options
author | UbitUmarov | 2017-07-24 22:04:36 +0100 |
---|---|---|
committer | UbitUmarov | 2017-07-24 22:04:36 +0100 |
commit | 13564aa984636aab12b8d4694051b21c557fe77a (patch) | |
tree | 08bdca939bd4934dd34775e2aa44ba139ccf59bc /OpenSim/Region/CoreModules/World | |
parent | mantis 8212 fix sqlite parameter prefixing (diff) | |
download | opensim-SC-13564aa984636aab12b8d4694051b21c557fe77a.zip opensim-SC-13564aa984636aab12b8d4694051b21c557fe77a.tar.gz opensim-SC-13564aa984636aab12b8d4694051b21c557fe77a.tar.bz2 opensim-SC-13564aa984636aab12b8d4694051b21c557fe77a.tar.xz |
only hide parcel info from banned avatars
Diffstat (limited to 'OpenSim/Region/CoreModules/World')
-rw-r--r-- | OpenSim/Region/CoreModules/World/Land/LandManagementModule.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/CoreModules/World/Land/LandManagementModule.cs b/OpenSim/Region/CoreModules/World/Land/LandManagementModule.cs index a2c7c83..221670e 100644 --- a/OpenSim/Region/CoreModules/World/Land/LandManagementModule.cs +++ b/OpenSim/Region/CoreModules/World/Land/LandManagementModule.cs | |||
@@ -1292,7 +1292,7 @@ namespace OpenSim.Region.CoreModules.World.Land | |||
1292 | { | 1292 | { |
1293 | if (!temp.Contains(currentParcel)) | 1293 | if (!temp.Contains(currentParcel)) |
1294 | { | 1294 | { |
1295 | if (!currentParcel.IsEitherBannedOrRestricted(remote_client.AgentId)) | 1295 | if (!currentParcel.IsBannedFromLand(remote_client.AgentId)) |
1296 | { | 1296 | { |
1297 | currentParcel.ForceUpdateLandInfo(); | 1297 | currentParcel.ForceUpdateLandInfo(); |
1298 | temp.Add(currentParcel); | 1298 | temp.Add(currentParcel); |