diff options
author | lcc | 2010-04-04 18:29:18 +0200 |
---|---|---|
committer | lcc | 2010-04-04 18:29:18 +0200 |
commit | 956225f0e1a3441e47a74b8882cc975f626e8b36 (patch) | |
tree | 96c809a90601cae67b492de063b4df5ce7f99d89 /OpenSim/Region/CoreModules | |
parent | Change land overlay to send group owned status properly (diff) | |
download | opensim-SC_OLD-956225f0e1a3441e47a74b8882cc975f626e8b36.zip opensim-SC_OLD-956225f0e1a3441e47a74b8882cc975f626e8b36.tar.gz opensim-SC_OLD-956225f0e1a3441e47a74b8882cc975f626e8b36.tar.bz2 opensim-SC_OLD-956225f0e1a3441e47a74b8882cc975f626e8b36.tar.xz |
Fixed Ban and parcel exclusion. Need to fix the parcel chat too
Diffstat (limited to 'OpenSim/Region/CoreModules')
-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 6c9830c..8039558 100644 --- a/OpenSim/Region/CoreModules/World/Land/LandManagementModule.cs +++ b/OpenSim/Region/CoreModules/World/Land/LandManagementModule.cs | |||
@@ -390,7 +390,7 @@ namespace OpenSim.Region.CoreModules.World.Land | |||
390 | { | 390 | { |
391 | if (avatar.AbsolutePosition.Z < LandChannel.BAN_LINE_SAFETY_HIEGHT) | 391 | if (avatar.AbsolutePosition.Z < LandChannel.BAN_LINE_SAFETY_HIEGHT) |
392 | { | 392 | { |
393 | if (parcelAvatarIsEntering.IsBannedFromLand(avatar.UUID)) | 393 | if (parcelAvatarIsEntering.IsEitherBannedOrRestricted(avatar.UUID)) |
394 | { | 394 | { |
395 | MoveUserOutOfParcel(avatar); | 395 | MoveUserOutOfParcel(avatar); |
396 | } | 396 | } |