changes to setlimit cmd
parent
fbf75653a4
commit
321878d85d
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue