diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/bot.ts | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -59,7 +59,7 @@ client.on('message', async msg => { if (msg.channel.type == 'dm') { console.log(msg.author.tag, 'says', msgContent, 'in a DM'); } else { - console.log(msg.member.user.tag, 'says', msgContent, 'in #' + msg.channel.name); + console.log(msg.member.user.tag, 'says', msgContent, 'in #' + msg.channel.name + ' in ' + msg.guild.name); } } |