This repository has been archived on 2022-10-14. You can view files and clone it, but cannot push or open issues/pull-requests.
melonybot/commands/goodnight.js

15 lines
449 B
JavaScript

const { Command } = require('discord-akairo');
module.exports = class extends Command {
constructor() {
super('goodnight', {
aliases: ['goodnight', 'gn'],
description: "Let the bot know you're going to bed and bot sends a heartwarming goodnight message.",
typing: true
});
}
exec(message) {
return message.channel.send(`Goodnight ${message.member.displayName} :heart:`);
}
}