.ban and .kick reasons will now show up in audit log.

This commit is contained in:
Master Kwoth 2017-11-17 11:33:13 +01:00
parent eac9ad018b
commit 940600bda6
2 changed files with 3 additions and 3 deletions

View File

@ -286,7 +286,7 @@ namespace NadekoBot.Modules.Administration
}
}
await Context.Guild.AddBanAsync(user, 7).ConfigureAwait(false);
await Context.Guild.AddBanAsync(user, 7, msg).ConfigureAwait(false);
await Context.Channel.EmbedAsync(new EmbedBuilder().WithOkColor()
.WithTitle("⛔️ " + GetText("banned_user"))
.AddField(efb => efb.WithName(GetText("username")).WithValue(user.ToString()).WithIsInline(true))
@ -395,7 +395,7 @@ namespace NadekoBot.Modules.Administration
catch { }
}
await user.KickAsync().ConfigureAwait(false);
await user.KickAsync(msg).ConfigureAwait(false);
await Context.Channel.EmbedAsync(new EmbedBuilder().WithOkColor()
.WithTitle(GetText("kicked_user"))
.AddField(efb => efb.WithName(GetText("username")).WithValue(user.ToString()).WithIsInline(true))

View File

@ -21,7 +21,7 @@ namespace NadekoBot.Core.Services.Impl
private readonly IBotCredentials _creds;
private readonly DateTime _started;
public const string BotVersion = "2.5.2";
public const string BotVersion = "2.5.3";
public string Author => "Kwoth#2560";
public string Library => "Discord.Net";