When I type /bs I get the ArgumentsErrorMessage saying to type /bs help. It could just use the /bs help message instead and save a step.
#region Chat Commands
[Command("blueprintshare", "bs")]
private void ToggleCommand(IPlayer player, string command, string[] args)
{
var playerUID = player.Id;
if (args.Length < 1)
{
player.Reply(GetLangValue("Prefix", playerUID) + GetLangValue("HelpMessage", playerUID));
return;
}