mirror of
https://github.com/arthur-pbty/xiao.git
synced 2026-06-03 23:36:43 +02:00
19 lines
518 B
JavaScript
19 lines
518 B
JavaScript
const SubredditCommand = require('../../structures/commands/Subreddit');
|
|
|
|
module.exports = class ShowerThoughtCommand extends SubredditCommand {
|
|
constructor(client) {
|
|
super(client, {
|
|
name: 'shower-thought',
|
|
aliases: ['shower-thoughts', 'shower', 's-thought', 'shower-t'],
|
|
group: 'random-res',
|
|
memberName: 'shower-thought',
|
|
description: 'Responds with a random shower thought, directly from r/Showerthoughts.',
|
|
subreddit: 'Showerthoughts'
|
|
});
|
|
}
|
|
|
|
generateText(post) {
|
|
return post.title;
|
|
}
|
|
};
|