From 30ae53b21e7f7cc42c93a43ca96b2df4e6a46e72 Mon Sep 17 00:00:00 2001 From: 8cy <50817549+8cy@users.noreply.github.com> Date: Mon, 27 Apr 2020 17:38:58 -0700 Subject: remove lotr, v.8.1.1 --- src/commands/fun/quote.ts | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) (limited to 'src/commands') diff --git a/src/commands/fun/quote.ts b/src/commands/fun/quote.ts index 81850cb..1173d62 100644 --- a/src/commands/fun/quote.ts +++ b/src/commands/fun/quote.ts @@ -4,7 +4,6 @@ import hsq from 'harvey-specter-quotes' import aq from 'animequote' import cq from 'chewbacca-quotes' import asq from 'arnie-quote' -import lotrq from 'random-lotr-movie-quote' import { Command, CommandoMessage } from 'discord.js-commando'; import emoji from 'emoji-random'; @@ -30,7 +29,7 @@ module.exports = class QuoteFun extends Command { args: [ { key: 'atCharacter', - prompt: 'Would you like a specific type?\nTypes: movie, harvey specter, anime, chewbacca, arnold schwarzenegger or lotr.', + prompt: 'Would you like a specific type?\nTypes: movie, harvey specter, anime, chewbacca or arnold schwarzenegger.', type: 'string' } ], @@ -71,8 +70,6 @@ module.exports = class QuoteFun extends Command { msg.reply(cq() + ' ' + emoji.random()) } else if (atCharacter == 'arnold schwarzenegger' || atCharacter == 'arnold' || atCharacter == 'schwarzenegger') { msg.reply(asq() + ' ' + emoji.random()) - } else if (atCharacter == 'lotr' || atCharacter == 'lord of the rings') { - msg.reply(lotrq() + ' ' + emoji.random()) } else { msg.reply('That was not at option. ' + emoji.random()) } -- cgit v1.2.3