This commit is contained in:
appelemac 2016-06-15 16:05:20 +02:00
parent 85b6bb555b
commit e4137acc65
2 changed files with 2 additions and 3 deletions

View File

@ -4,7 +4,6 @@ using NadekoBot.Classes.Help.Commands;
using NadekoBot.Extensions; using NadekoBot.Extensions;
using NadekoBot.Modules.Permissions.Classes; using NadekoBot.Modules.Permissions.Classes;
using System.Linq; using System.Linq;
using System.Text.RegularExpressions;
namespace NadekoBot.Modules.Help namespace NadekoBot.Modules.Help
{ {
@ -53,6 +52,7 @@ namespace NadekoBot.Modules.Help
await e.Channel.SendMessage("`List of commands:` \n• " + string.Join("\n• ", cmdsArray.Select(c => c.Text))) await e.Channel.SendMessage("`List of commands:` \n• " + string.Join("\n• ", cmdsArray.Select(c => c.Text)))
.ConfigureAwait(false); .ConfigureAwait(false);
}); });
});
} }
} }
} }

View File

@ -91,7 +91,6 @@ namespace NadekoBot.Classes.JSONModels
} } } }
}; };
public List<string> RotatingStatuses { get; set; } = new List<string>(); public List<string> RotatingStatuses { get; set; } = new List<string>();
public CommandPrefixesModel CommandPrefixes { get; set; } = new CommandPrefixesModel(); public CommandPrefixesModel CommandPrefixes { get; set; } = new CommandPrefixesModel();
public HashSet<ulong> ServerBlacklist { get; set; } = new HashSet<ulong>(); public HashSet<ulong> ServerBlacklist { get; set; } = new HashSet<ulong>();