From d152611715611c51f504d5e6c6f2572196b52579 Mon Sep 17 00:00:00 2001 From: Master Kwoth Date: Mon, 30 Oct 2017 15:14:41 +0100 Subject: [PATCH] version upped --- .../Modules/Administration/Services/AutoAssignRoleService.cs | 4 ++-- NadekoBot.Core/Services/Impl/StatsService.cs | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/NadekoBot.Core/Modules/Administration/Services/AutoAssignRoleService.cs b/NadekoBot.Core/Modules/Administration/Services/AutoAssignRoleService.cs index ef38963e..cd7e4a78 100644 --- a/NadekoBot.Core/Modules/Administration/Services/AutoAssignRoleService.cs +++ b/NadekoBot.Core/Modules/Administration/Services/AutoAssignRoleService.cs @@ -43,14 +43,14 @@ namespace NadekoBot.Modules.Administration.Services await user.AddRoleAsync(role).ConfigureAwait(false); else { - _log.Info($"Disabled 'Auto assign role' feature on {0} server the role doesn't exist.", + _log.Warn($"Disabled 'Auto assign role' feature on {0} server the role doesn't exist.", roleId); DisableAar(user.GuildId); } } catch (Discord.Net.HttpException ex) when (ex.HttpCode == System.Net.HttpStatusCode.Forbidden) { - _log.Info($"Disabled 'Auto assign role' feature on {0} server because I don't have role management permissions.", + _log.Warn($"Disabled 'Auto assign role' feature on {0} server because I don't have role management permissions.", roleId); DisableAar(user.GuildId); } diff --git a/NadekoBot.Core/Services/Impl/StatsService.cs b/NadekoBot.Core/Services/Impl/StatsService.cs index 540b5304..c4b06b0b 100644 --- a/NadekoBot.Core/Services/Impl/StatsService.cs +++ b/NadekoBot.Core/Services/Impl/StatsService.cs @@ -21,7 +21,7 @@ namespace NadekoBot.Core.Services.Impl private readonly IBotCredentials _creds; private readonly DateTime _started; - public const string BotVersion = "2.2.3"; + public const string BotVersion = "2.3.0"; public string Author => "Kwoth#2560"; public string Library => "Discord.Net";