diff --git a/commands/imageedit/meme.js b/commands/imageedit/meme.js index 253cb619..941e98a9 100644 --- a/commands/imageedit/meme.js +++ b/commands/imageedit/meme.js @@ -119,7 +119,7 @@ module.exports = class MemeCommand extends commando.Command { console.log(`[Command] ${message.content}`); let [type] = message.content.toLowerCase().split(" ").slice(1); if (type === "list") { - let listMsg = await message.channel.send("**Type Codes:** tenguy, afraid, older, aag, tried, biw, blb, kermit, bd, ch, cbg, wonka, cb, keanu, dsm, live, ants, doge, alwaysonbeat, ermg, facepalm, fwp, fa, fbf, fry, hipster, icanhas, crazypills, mw, noidea, regret, boat, hagrid, sohappy, captain, inigo, iw, ackbar, happening, joker, ive, ll, morpheus, mb, badchoice, mmm, jetpack, red, mordor, oprah, oag, remembers, philosoraptor, jw, patrick, rollsafe, sad-obama, sad-clinton, sadfrog, sad-bush, sad-biden, sad-boehner, saltbae, sarcasticbear, dwight, sb, ss, sf, dodgson, money, sohot, nice, awesome-awkward, awesome, awkward-awesome, awkward, fetch, success, scc, ski, officespace, interesting, toohigh, bs, center, both, winter, xy, buzz, yodawg, uno, yallgot, bad, elf, chosen"); + message.channel.send("**Type Codes:** tenguy, afraid, older, aag, tried, biw, blb, kermit, bd, ch, cbg, wonka, cb, keanu, dsm, live, ants, doge, alwaysonbeat, ermg, facepalm, fwp, fa, fbf, fry, hipster, icanhas, crazypills, mw, noidea, regret, boat, hagrid, sohappy, captain, inigo, iw, ackbar, happening, joker, ive, ll, morpheus, mb, badchoice, mmm, jetpack, red, mordor, oprah, oag, remembers, philosoraptor, jw, patrick, rollsafe, sad-obama, sad-clinton, sadfrog, sad-bush, sad-biden, sad-boehner, saltbae, sarcasticbear, dwight, sb, ss, sf, dodgson, money, sohot, nice, awesome-awkward, awesome, awkward-awesome, awkward, fetch, success, scc, ski, officespace, interesting, toohigh, bs, center, both, winter, xy, buzz, yodawg, uno, yallgot, bad, elf, chosen"); } else if (message.content.includes(" | ")) { if (message.content.split(" ").slice(1).join(" ").match(/^[a-zA-Z0-9|.,!?'-\s]+$/)) { diff --git a/commands/random/today.js b/commands/random/today.js index 7ed96044..91f22eb8 100644 --- a/commands/random/today.js +++ b/commands/random/today.js @@ -34,9 +34,9 @@ module.exports = class TodayCommand extends commando.Command { const embed = new Discord.RichEmbed() .setColor(0x9797FF) .setURL(responseData.url) - .setTitle('On this day (' + responseData.date + ')...') + .setTitle(`On this day (${responseData.date})...`) .setTimestamp() - .setDescription(responseData.data.Events[randomNumber].text + ' (' + responseData.data.Events[randomNumber].year + ')'); + .setDescription(`${responseData.data.Events[randomNumber].text} (${responseData.data.Events[randomNumber].year})`); message.channel.sendEmbed(embed); } catch (err) { diff --git a/commands/search/imdb.js b/commands/search/imdb.js index f6c4328a..9f4e7ae6 100644 --- a/commands/search/imdb.js +++ b/commands/search/imdb.js @@ -38,7 +38,7 @@ module.exports = class IMDBCommand extends commando.Command { .setColor(0xDBA628) .setAuthor('IMDB', 'http://static.wixstatic.com/media/c65cbf_31901b544fe24f1890134553bf40c8be.png') .setURL(movie.imdburl) - .setTitle(movie.title + ' (' + movie.rating + ' Score)') + .setTitle(`${movie.title} (${movie.rating} Score)`) .setDescription(`${movie.plot.substr(0, 1500)} [Read the Rest Here!](${movie.imdburl})`) .addField('**Genres:**', movie.genres)