1
1
mirror of https://gitlab.com/ceda_ei/Quadnite-Bot synced 2026-05-06 05:40:04 +02:00

Add /weebify

This commit is contained in:
2019-02-12 04:37:50 +05:30
parent 56999fd89d
commit 3b945e17f3
2 changed files with 56 additions and 0 deletions

View File

@@ -2,6 +2,7 @@ const random = require("./random");
const insults_fun = require("./insult");
const words_fun = require("./words");
const is = require("./is");
const weebify = require("./weebify");
module.exports = (bot, [ questions, kys, insults, commands_list, words ]) => {
bot.command("question", (ctx) => ctx.reply(random(questions)()));
@@ -43,5 +44,6 @@ module.exports = (bot, [ questions, kys, insults, commands_list, words ]) => {
bot.command("rate", (ctx) => ctx.reply("[Vote for me on Telegram "
+ "Directory!](https://t.me/tgdrbot?start=quadnite_bot)", {parse_mode:
"Markdown"}));
bot.command("weebify", (ctx) => ctx.reply(weebify()(ctx)));
};