From 169e176f47b66b6c5235f7bcaa9cb15b9117fa2b Mon Sep 17 00:00:00 2001 From: mingchen Date: Fri, 21 Dec 2007 03:34:51 +0000 Subject: *RemoteAdminPlugin can now be password protected. Add the password in the INI under [RemoteAdmin] with the name access_password *Removed a few more unneeded exceptions in land that has been fixed --- OpenSim/Region/Environment/LandManagement/Land.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'OpenSim/Region/Environment/LandManagement/Land.cs') diff --git a/OpenSim/Region/Environment/LandManagement/Land.cs b/OpenSim/Region/Environment/LandManagement/Land.cs index 11ff0ee..7977c78 100644 --- a/OpenSim/Region/Environment/LandManagement/Land.cs +++ b/OpenSim/Region/Environment/LandManagement/Land.cs @@ -472,7 +472,7 @@ namespace OpenSim.Region.Environment.LandManagement if (bitmap.GetLength(0) != 64 || bitmap.GetLength(1) != 64 || bitmap.Rank != 2) { //Throw an exception - The bitmap is not 64x64 - throw new Exception("Error: Invalid Parcel Bitmap"); + //throw new Exception("Error: Invalid Parcel Bitmap"); } else { @@ -584,7 +584,7 @@ namespace OpenSim.Region.Environment.LandManagement if (land_bitmap.GetLength(0) != 64 || land_bitmap.GetLength(1) != 64 || land_bitmap.Rank != 2) { //Throw an exception - The bitmap is not 64x64 - throw new Exception("Error: Invalid Parcel Bitmap in modifyLandBitmapSquare()"); + //throw new Exception("Error: Invalid Parcel Bitmap in modifyLandBitmapSquare()"); } int x, y; -- cgit v1.1