changes to setlimit cmd

merge-requests/4/head
Matthew 2020-05-02 02:47:04 -04:00
parent fbf75653a4
commit 321878d85d
No known key found for this signature in database
GPG Key ID: 766BE43AE75F7559
1 changed files with 2 additions and 1 deletions

View File

@ -1,6 +1,7 @@
import { Message } from 'eris'; import { Message } from 'eris';
import { Command } from '../class'; import { Command } from '../class';
import { Client } from '..'; import { Client } from '..';
import SetLimit_RAM from './setlimit_ram';
export default class SetLimit extends Command { export default class SetLimit extends Command {
constructor(client: Client) { constructor(client: Client) {
@ -9,7 +10,7 @@ export default class SetLimit extends Command {
this.description = 'Sets resource limits for the various tiers'; this.description = 'Sets resource limits for the various tiers';
this.usage = `Run ${this.client.config.prefix}${this.name} [subcommand] for usage information`; this.usage = `Run ${this.client.config.prefix}${this.name} [subcommand] for usage information`;
this.permissions = { roles: ['662163685439045632'] }; this.permissions = { roles: ['662163685439045632'] };
this.subcmds = []; this.subcmds = [SetLimit_RAM];
this.enabled = true; this.enabled = true;
} }