From 6c769682f9c59bb8ee477bdd524505fcf83fc889 Mon Sep 17 00:00:00 2001 From: Bsian Date: Sat, 16 Nov 2019 19:42:34 +0000 Subject: [PATCH] Made eval and exec not guild only --- src/commands/eval.ts | 1 + src/commands/exec.ts | 1 + 2 files changed, 2 insertions(+) diff --git a/src/commands/eval.ts b/src/commands/eval.ts index 5e4f6f1..16d9fc3 100644 --- a/src/commands/eval.ts +++ b/src/commands/eval.ts @@ -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[]) { diff --git a/src/commands/exec.ts b/src/commands/exec.ts index 17ae8ca..164efcf 100644 --- a/src/commands/exec.ts +++ b/src/commands/exec.ts @@ -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[]) {