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