Fix some argument type names

This commit is contained in:
Dragory 2019-04-20 19:55:35 +03:00
parent 51a77b0082
commit 9f7f87dc77
5 changed files with 8 additions and 8 deletions

View file

@ -166,7 +166,7 @@ export class SlowmodePlugin extends ZeppelinPlugin<ISlowmodePluginConfig> {
/**
* COMMAND: Clear slowmode from a specific user on a specific channel
*/
@d.command("slowmode clear", "<channel:channel> <user:user>")
@d.command("slowmode clear", "<channel:channel> <user:resolvedUserLoose>")
@d.permission("can_manage")
async clearSlowmodeCmd(msg: Message, args: { channel: GuildChannel & TextChannel; user: User }) {
const channelSlowmode = await this.slowmodes.getChannelSlowmode(args.channel.id);