From 1c4834aec22a42cdd91dee3e317a0a7093b6121c Mon Sep 17 00:00:00 2001 From: Matthew R Date: Mon, 15 Jun 2020 21:50:45 -0400 Subject: [PATCH] add 'p' as an alias for page --- src/commands/page.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/commands/page.ts b/src/commands/page.ts index 05d6b84..085ffb0 100644 --- a/src/commands/page.ts +++ b/src/commands/page.ts @@ -12,6 +12,7 @@ export default class Page extends Command { this.name = 'page'; this.description = 'Pages the specified emergency number, department number, or individual number with the specified pager code.'; this.usage = 'page '; + this.aliases = ['p']; this.permissions = 1; this.enabled = true; this.guildOnly = true;