From 321878d85dad631eca72fc50a783709a8082f064 Mon Sep 17 00:00:00 2001 From: Matthew R Date: Sat, 2 May 2020 02:47:04 -0400 Subject: [PATCH] changes to setlimit cmd --- src/commands/setlimit.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/commands/setlimit.ts b/src/commands/setlimit.ts index 741e63c..60fd53b 100644 --- a/src/commands/setlimit.ts +++ b/src/commands/setlimit.ts @@ -1,6 +1,7 @@ import { Message } from 'eris'; import { Command } from '../class'; import { Client } from '..'; +import SetLimit_RAM from './setlimit_ram'; export default class SetLimit extends Command { constructor(client: Client) { @@ -9,7 +10,7 @@ export default class SetLimit extends Command { this.description = 'Sets resource limits for the various tiers'; this.usage = `Run ${this.client.config.prefix}${this.name} [subcommand] for usage information`; this.permissions = { roles: ['662163685439045632'] }; - this.subcmds = []; + this.subcmds = [SetLimit_RAM]; this.enabled = true; }