mirror of
https://github.com/JonnyBro/JaBa.git
synced 2024-11-22 21:24:59 +05:00
38 lines
No EOL
979 B
JavaScript
38 lines
No EOL
979 B
JavaScript
const Command = require("../../base/Command.js");
|
|
|
|
class Divorce extends Command {
|
|
constructor (client) {
|
|
super(client, {
|
|
name: "divorce",
|
|
dirname: __dirname,
|
|
enabled: true,
|
|
guildOnly: false,
|
|
aliases: [ "profil" ],
|
|
memberPermissions: [],
|
|
botPermissions: [ "SEND_MESSAGES", "EMBED_LINKS" ],
|
|
nsfw: false,
|
|
ownerOnly: false,
|
|
cooldown: 3000
|
|
});
|
|
}
|
|
|
|
async run (message, args, data) {
|
|
// Check if the message author is wedded
|
|
if (!data.userData.lover) return message.error("economy/divorce:NOT_MARRIED");
|
|
|
|
// Updates db
|
|
const user = this.client.users.cache.get(data.userData.lover) || await this.client.users.fetch(data.userData.lover);
|
|
|
|
data.userData.lover = null;
|
|
data.userData.save();
|
|
|
|
const oldLover = await this.client.findOrCreateUser({ id:user.id });
|
|
oldLover.lover = null;
|
|
oldLover.save();
|
|
|
|
// Send success message
|
|
message.success("economy/divorce:SUCCESS", { username: user.username });
|
|
}
|
|
};
|
|
|
|
module.exports = Divorce; |