diff --git a/app.js b/app.js index 3134b59..98fbaf9 100644 --- a/app.js +++ b/app.js @@ -88,7 +88,10 @@ function send(msg, txt){ if (raw.bot.stealth_mode) console.log(">> ANSWER: " + txt + "\n"); else { console.log(">> Sent Answer\n"); - msg.reply(txt); + if(msg.channel.type === "group") + msg.channel.send(txt); + else + msg.reply(txt); } }