From bae3bb4caba8034081f45e49072f51a602ef102e Mon Sep 17 00:00:00 2001 From: Mylloon Date: Sun, 3 Jul 2022 21:08:09 +0200 Subject: [PATCH] indentation msg --- src/commands/misc/ping.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/commands/misc/ping.js b/src/commands/misc/ping.js index 1186a39..ad4f81a 100644 --- a/src/commands/misc/ping.js +++ b/src/commands/misc/ping.js @@ -10,8 +10,8 @@ export default { const sent = await interaction.reply({ content: 'Pinging...', fetchReply: true }); interaction.editReply( - `Roundtrip latency: - ${sent.createdTimestamp - interaction.createdTimestamp}ms - Websocket heartbeat: ${client.ws.ping}ms.`); + `Roundtrip latency: \ +${sent.createdTimestamp - interaction.createdTimestamp}ms +Websocket heartbeat: ${client.ws.ping}ms.`); }, };