From b6555ffff0d1c6351ddf0ad8aa65859e07dc5127 Mon Sep 17 00:00:00 2001 From: IRONM00N <64110067+IRONM00N@users.noreply.github.com> Date: Tue, 29 Jun 2021 10:06:01 -0400 Subject: Revert Typescript Version upgrade -> it breaks sequelize --- src/commands/dev/eval.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/commands/dev/eval.ts') diff --git a/src/commands/dev/eval.ts b/src/commands/dev/eval.ts index 7f6a713..a1c2d87 100644 --- a/src/commands/dev/eval.ts +++ b/src/commands/dev/eval.ts @@ -135,12 +135,11 @@ export default class EvalCommand extends BushCommand { show_proto: boolean; } ): Promise { - if (!message.author.isOwner()) - return await message.util.reply(`${this.client.util.emojis.error} Only my developers can run this command.`); + // if (!message.author.isOwner()) + // return await message.util.reply(`${this.client.util.emojis.error} Only my developers can run this command.`); if (message.util.isSlash) { await (message as BushSlashMessage).interaction.defer({ ephemeral: args.silent }); } - const code: { js?: string | null; ts?: string | null; lang?: 'js' | 'ts' } = {}; args.code = args.code.replace(/[“”]/g, '"'); args.code = args.code.replace(/```/g, ''); @@ -193,6 +192,7 @@ export default class EvalCommand extends BushCommand { } else { output = eval(code.js); output = await output; + this.client.console.debug(output); } let proto, outputProto; if (args.show_proto) { -- cgit