From 4a20e88566f8df1155667a1fc7cf863951930bfd Mon Sep 17 00:00:00 2001 From: john doe <5-unknown@libraryofcode.org> Date: Fri, 3 Jan 2020 02:10:25 -0500 Subject: [PATCH] Update lock.ts add usage, and add marshal role to allowed roles. --- src/commands/lock.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/commands/lock.ts b/src/commands/lock.ts index 3648fa0..4a3f33f 100644 --- a/src/commands/lock.ts +++ b/src/commands/lock.ts @@ -8,7 +8,8 @@ export default class Lock extends Command { super(client); this.name = 'lock'; this.description = 'Locks an account.'; - this.permissions = { roles: ['455972169449734144', '643619219988152321'] }; + this.usage = `${this.client.config.prefix}lock [username || user ID] [Reason]`; + this.permissions = { roles: ['455972169449734144', '643619219988152321', '662163685439045632'] }; this.enabled = true; }