diff options
Diffstat (limited to 'src/commands')
| -rw-r--r-- | src/commands/fun/quote.ts | 5 |
1 files changed, 1 insertions, 4 deletions
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()) } |