diff --git a/bot.js b/bot.js index 7668be8..ab65965 100644 --- a/bot.js +++ b/bot.js @@ -149,7 +149,21 @@ client.on('messageCreate', msg => { } else { - client.channels.fetch(channel_id).then(channel => channel.send(data.toString())) + if (data.toString().includes(">")) return + if (!data.toString().startsWith("annon")){ + let split = data.toString().split(":") + console.log(split[0]) + let dUser = client.users.fetch(split[0]); + dUser.then(function (result) { + console.log(split) + client.channels.fetch(channel_id).then(channel => channel.send(`${result.username}: ${split[1]}`)) + + }); + } else { + client.channels.fetch(channel_id).then(channel => channel.send(data.toString())) + + } + } }); });