Files
xiao/commands/random/shower-thought.js
T
2018-09-21 11:06:07 +00:00

19 lines
479 B
JavaScript

const SubredditCommand = require('../../structures/commands/Subreddit');
module.exports = class ShowerThoughtCommand extends SubredditCommand {
constructor(client) {
super(client, {
name: 'shower-thought',
aliases: ['shower-thoughts'],
group: 'random',
memberName: 'shower-thought',
description: 'Responds with a random shower thought, directly from r/Showerthoughts.',
subreddit: 'Showerthoughts'
});
}
generateText(post) {
return post.title;
}
};