mirror of
https://github.com/arthur-pbty/xiao.git
synced 2026-06-21 05:54:33 +02:00
Remove dating command
This commit is contained in:
@@ -1,29 +0,0 @@
|
||||
const ImgurAlbumCommand = require('../../structures/commands/ImgurAlbum');
|
||||
const { stripIndents } = require('common-tags');
|
||||
const texts = require('../../assets/json/dating');
|
||||
const { XIAO_ALBUM_ID } = process.env;
|
||||
|
||||
module.exports = class DatingCommand extends ImgurAlbumCommand {
|
||||
constructor(client) {
|
||||
super(client, {
|
||||
name: 'dating',
|
||||
aliases: ['date', 'tinder'],
|
||||
group: 'other',
|
||||
memberName: 'dating',
|
||||
description: 'Find the person of your dreams with this dating system!',
|
||||
clientPermissions: ['ATTACH_FILES'],
|
||||
albumID: XIAO_ALBUM_ID
|
||||
});
|
||||
}
|
||||
|
||||
generateText() {
|
||||
const text = texts[Math.floor(Math.random() * texts.length)];
|
||||
return stripIndents`
|
||||
**${this.client.user.username}, ${new Date().getFullYear() - 2017}**
|
||||
_${text}_
|
||||
|
||||
Send a friend request to ${this.client.user.tag} to meet now!
|
||||
Don't worry, this is just a joke. Unless...
|
||||
`;
|
||||
}
|
||||
};
|
||||
Reference in New Issue
Block a user