Use direct unicode

This commit is contained in:
Daniel Odendahl Jr
2017-09-08 01:28:33 +00:00
parent 612cb39747
commit c12b736590
14 changed files with 25 additions and 29 deletions
+1 -1
View File
@@ -16,7 +16,7 @@ module.exports = class PingCommand extends Command {
async run(msg) {
const message = await msg.say('Pinging...');
return message.edit(stripIndents`
:ping_pong: Pong! \`${Math.round(message.createdTimestamp - msg.createdTimestamp)}ms\`
🏓 Pong! \`${Math.round(message.createdTimestamp - msg.createdTimestamp)}ms\`
Heartbeat: \`${Math.round(this.client.ping)}ms\`
`);
}