diff --git a/src/inc/trigger/sandbox.js b/src/inc/trigger/sandbox.js index a355ae0..d0a6a86 100644 --- a/src/inc/trigger/sandbox.js +++ b/src/inc/trigger/sandbox.js @@ -90,11 +90,11 @@ module.exports = bot => { call: /^\!flummi .*/i, level: 100, active: true, - clients: ["irc", "tg"], + clients: ["irc"], f: e => { const args = e.message.substring(8); const out = Array(args).fill("f".charCodeAt(0)).join("").length - e.write(`PRIVMSG ${e.network} :${out}`); + e.write(`PRIVMSG ${e.channel} :${out}`); } }); };