reduced the delay on .ban, .softban, and .kick to 1 second, from 2

This commit is contained in:
Kwoth 2017-02-16 19:44:39 +01:00
parent 108a9fb156
commit ad2dd3a565

View File

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