banning, kicking and softbanning no longer have the delay at all.

This commit is contained in:
Kwoth 2017-02-16 19:48:51 +01:00
parent ad2dd3a565
commit 7ce0702c78

View File

@ -241,8 +241,6 @@ namespace NadekoBot.Modules.Administration
try
{
await user.SendErrorAsync(GetText("bandm", Format.Bold(Context.Guild.Name), msg));
await Task.Delay(1000).ConfigureAwait(false);
}
catch
{
@ -276,7 +274,6 @@ namespace NadekoBot.Modules.Administration
try
{
await user.SendErrorAsync(GetText("sbdm", Format.Bold(Context.Guild.Name), msg));
await Task.Delay(1000).ConfigureAwait(false);
}
catch
{
@ -311,7 +308,6 @@ namespace NadekoBot.Modules.Administration
try
{
await user.SendErrorAsync(GetText("kickdm", Format.Bold(Context.Guild.Name), msg));
await Task.Delay(1000).ConfigureAwait(false);
}
catch { }
}