diff --git a/src/modules/general.js b/src/modules/general.js index eb877bc..0f3f315 100644 --- a/src/modules/general.js +++ b/src/modules/general.js @@ -135,3 +135,13 @@ ping.callback = async function (msg) { newMsg.edit(`Pong. RTT: \`${rtt}ms\`, Gateway: \`${gateway}ms\``); }; hf.registerCommand(ping); + +const invite = new Command("invite"); +invite.category = CATEGORY; +invite.helpText = "Returns invite link for the bot."; +invite.callback = function (msg) { + msg.channel.createMessage( + `` + ); +}; +hf.registerCommand(invite);