diff --git a/EssentialsPlugin/Utility/CubeGrid.cs b/EssentialsPlugin/Utility/CubeGrid.cs index 542c533..e8d5ab5 100644 --- a/EssentialsPlugin/Utility/CubeGrid.cs +++ b/EssentialsPlugin/Utility/CubeGrid.cs @@ -628,18 +628,12 @@ public static HashSet ScanGrids( ulong userId, string line ) return new HashSet( ); } - if ( words.Length - 3 > options.Count ) - { - if ( ApplicationLog.BaseLog.IsDebugEnabled ) - { - ApplicationLog.BaseLog.Debug( "Essentials: Arguments: {0}", string.Join( " ", words ) ); - ApplicationLog.BaseLog.Debug( "Essentials: Options: {0}", string.Join( ",", options.Keys ) ); - } - Communication.SendPrivateInformation( userId, "Possible problem with your parameters (options provided is larger than options found). Not returning any results in case of error" ); - - return new HashSet( ); - } - + if (ApplicationLog.BaseLog.IsDebugEnabled) + { + ApplicationLog.BaseLog.Debug("Essentials: Arguments: {0}", string.Join(" ", words)); + ApplicationLog.BaseLog.Debug("Essentials: Options: {0}", string.Join(",", options.Keys)); + } + if ( !scanOptions.Quiet ) Communication.SendPrivateInformation( userId, string.Format( "Scanning for ships with options: {0}", GetOptionsText( options ) ) );