From 8c747aa3e6e4b8da2847b40207c7f5a57390df06 Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Tue, 9 Jun 2020 10:27:43 -0400 Subject: [PATCH] Fix Lint --- commands/random-img/waifu.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/random-img/waifu.js b/commands/random-img/waifu.js index 814112d4..45b14165 100644 --- a/commands/random-img/waifu.js +++ b/commands/random-img/waifu.js @@ -19,7 +19,7 @@ module.exports = class WaifuCommand extends Command { }); } - async run(msg) { + run(msg) { const num = Math.floor(Math.random() * 100000); return msg.say({ files: [`https://www.thiswaifudoesnotexist.net/example-${num}.jpg`] }); }