From 69bdc069f03a8c677195007c5728b64e38677b77 Mon Sep 17 00:00:00 2001 From: Daniel Odendahl Jr Date: Sat, 6 May 2017 17:13:55 +0000 Subject: [PATCH] Temperature Doesn't Need to be async --- commands/numedit/temperature.js | 2 +- package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/commands/numedit/temperature.js b/commands/numedit/temperature.js index 16587bb8..3fae37af 100644 --- a/commands/numedit/temperature.js +++ b/commands/numedit/temperature.js @@ -37,7 +37,7 @@ module.exports = class TemperatureCommand extends Command { }); } - async run(msg, args) { + run(msg, args) { const { base, to, amount } = args; if(base === to) return msg.say(`Converting ${base} to ${to} is the same value, dummy.`); if(base === 'celsius') { diff --git a/package.json b/package.json index fc19702e..5557f4a2 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "xiaobot", - "version": "18.3.2", + "version": "18.3.3", "description": "A Discord Bot", "main": "shardingmanager.js", "scripts": {