Replaced access to .Context with .ctx

This commit is contained in:
Kwoth
2021-07-14 21:51:15 +02:00
parent 3c33c55dda
commit 42d623b696
19 changed files with 77 additions and 77 deletions

View File

@@ -32,12 +32,12 @@ namespace NadekoBot.Modules.Administration
return;
await ((ITextChannel) Context.Channel).ModifyAsync(tcp =>
await ((ITextChannel) ctx.Channel).ModifyAsync(tcp =>
{
tcp.SlowModeInterval = seconds;
});
await Context.OkAsync();
await ctx.OkAsync();
}
[NadekoCommand, Aliases]