From 0b5667045495fd9715a9ab4d155ffd478e585912 Mon Sep 17 00:00:00 2001 From: rhearmas <34490428+qu-ota@users.noreply.github.com> Date: Fri, 13 Dec 2019 09:39:02 -0500 Subject: [PATCH] let's make sure we're aware that we did this command --- cmds_SharpBot/Utility/avatar.js | 2 ++ cmds_SharpBot/Utility/calculator.js | 2 ++ 2 files changed, 4 insertions(+) diff --git a/cmds_SharpBot/Utility/avatar.js b/cmds_SharpBot/Utility/avatar.js index 3115cb9..a787750 100644 --- a/cmds_SharpBot/Utility/avatar.js +++ b/cmds_SharpBot/Utility/avatar.js @@ -1,3 +1,5 @@ +// This command has already been created. + exports.run = async (bot, msg) => { const user = msg.mentions.users.first(); if (!user) { diff --git a/cmds_SharpBot/Utility/calculator.js b/cmds_SharpBot/Utility/calculator.js index 4c2f3b5..2aa453d 100644 --- a/cmds_SharpBot/Utility/calculator.js +++ b/cmds_SharpBot/Utility/calculator.js @@ -1,3 +1,5 @@ +// This command has already been created. + const math = require('math-expression-evaluator'); const stripIndents = require('common-tags').stripIndents;