JaBa/commands/Economy/divorce.js
2021-12-19 00:17:39 +05:00

38 lines
No EOL
980 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:DIVORCED", { username: user.username });
}
};
module.exports = Divorce;