Made eval and exec not guild only

merge-requests/1/merge
Bsian 2019-11-16 19:42:34 +00:00
parent 97152cd063
commit 6c769682f9
No known key found for this signature in database
GPG Key ID: 097FB9A291026091
2 changed files with 2 additions and 0 deletions

View File

@ -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[]) {

View File

@ -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[]) {