This commit is contained in:
Flummi 2017-11-22 23:48:39 +01:00
parent c65124be1b
commit 538d1f7513

View File

@ -94,7 +94,7 @@ module.exports = bot => {
f: e => { f: e => {
const args = e.message.substring(8); const args = e.message.substring(8);
const out = Array(args).fill("f".charCodeAt(0)).join("").length const out = Array(args).fill("f".charCodeAt(0)).join("").length
bot.write(`PRIVMSG ${e.network} :${out}`); e.write(`PRIVMSG ${e.network} :${out}`);
} }
}); });
}; };