From 5bc656991ada5d3d4d5448c96c5f8fb7fb1c2cbd Mon Sep 17 00:00:00 2001 From: Daniel Odendahl Jr Date: Mon, 9 Oct 2017 20:41:34 +0000 Subject: [PATCH] Beep --- commands/random-res/8-ball.js | 6 +----- commands/random-res/magic-conch.js | 6 +----- 2 files changed, 2 insertions(+), 10 deletions(-) diff --git a/commands/random-res/8-ball.js b/commands/random-res/8-ball.js index 3c175126..7d4422a5 100644 --- a/commands/random-res/8-ball.js +++ b/commands/random-res/8-ball.js @@ -1,5 +1,4 @@ const { Command } = require('discord.js-commando'); -const { stripIndents } = require('common-tags'); const answers = require('../../assets/json/8-ball'); module.exports = class EightBallCommand extends Command { @@ -21,9 +20,6 @@ module.exports = class EightBallCommand extends Command { } run(msg, { question }) { - return msg.say(stripIndents` - Question: ${question} - 🎱 ${answers[Math.floor(Math.random() * answers.length)]} 🎱 - `); + return msg.say(`🎱 ${answers[Math.floor(Math.random() * answers.length)]} 🎱`); } }; diff --git a/commands/random-res/magic-conch.js b/commands/random-res/magic-conch.js index 6287d274..b538c500 100644 --- a/commands/random-res/magic-conch.js +++ b/commands/random-res/magic-conch.js @@ -1,5 +1,4 @@ const { Command } = require('discord.js-commando'); -const { stripIndents } = require('common-tags'); const answers = ['Maybe someday', 'Nothing', 'Neither', 'I don\'t think so', 'Yes', 'Try asking again']; module.exports = class MagicConchCommand extends Command { @@ -21,9 +20,6 @@ module.exports = class MagicConchCommand extends Command { } run(msg, { question }) { - return msg.say(stripIndents` - Question: ${question} - 🐚 ${answers[Math.floor(Math.random() * answers.length)]} 🐚 - `); + return msg.say(`🐚 ${answers[Math.floor(Math.random() * answers.length)]} 🐚`); } };