forked from engineering/cloudservices
Made eval and exec not guild only
parent
97152cd063
commit
6c769682f9
|
@ -13,6 +13,7 @@ export default class Eval extends Command {
|
|||
this.description = 'Evaluate JavaScript code';
|
||||
this.enabled = true;
|
||||
this.permissions = { users: ['253600545972027394', '278620217221971968'] };
|
||||
this.guildOnly = false;
|
||||
}
|
||||
|
||||
public async run(message: Message, args: string[]) {
|
||||
|
|
|
@ -11,6 +11,7 @@ export default class Exec extends Command {
|
|||
this.aliases = ['ex'];
|
||||
this.enabled = true;
|
||||
this.permissions = { users: ['253600545972027394', '278620217221971968'] };
|
||||
this.guildOnly = false;
|
||||
}
|
||||
|
||||
public async run(message: Message, args: string[]) {
|
||||
|
|
Loading…
Reference in New Issue