This repository has been archived on 2024-01-30. You can view files and clone it, but cannot push or open issues or pull requests.
anitrox/commands/invite.js

12 lines
406 B
JavaScript

module.exports = {
name: 'invite',
description: 'Sends invite to add the bot to a server.',
execute(client, message) {
if (message.author.id == 309427567004483586) {
message.channel.send('Link: http://bit.ly/39ZcG2K');
} else
message.channel.send("<:NyabotWarning:677296901590351919> ``Sorry, The bot is not public. Contact the dev if you'd like to have it in your server");
},
};