From 239145b74b733001dd1145a7aa398699fa86dba5 Mon Sep 17 00:00:00 2001 From: Saahil Date: Wed, 25 Sep 2024 15:20:12 -0400 Subject: [PATCH] fix: other stuff --- src/commands/on_message.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/commands/on_message.ts b/src/commands/on_message.ts index d347f2f..84f85bb 100644 --- a/src/commands/on_message.ts +++ b/src/commands/on_message.ts @@ -43,7 +43,7 @@ export default class Message implements Command { app.event(this.name, async (par) => { // console.debug(par); // if (!par.ack) return; - console.debug(0); + // console.debug(0); if (!par.say) return; console.log( `uh one of them are here`, @@ -80,7 +80,7 @@ export default class Message implements Command { // Put our eval result through the function // we defined above const cleaned = await clean(evaled); - await say(`\`\`\`js\n${cleaned}\`\`\``); + await say(`\`\`\`\n${cleaned}\`\`\``); } catch (e) { await say(`ERROR:\n\`\`\`${await clean(e.stack)}\`\`\``); }