From e5728aaa67b47c75119abd11805f11022bf5c1be Mon Sep 17 00:00:00 2001 From: Erwann Lagouche Date: Tue, 13 Sep 2022 11:43:23 +0200 Subject: [PATCH] fix: patch missing whitespace Add a missing whitespace in the ping command --- src/commands/General/ping.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/commands/General/ping.ts b/src/commands/General/ping.ts index 9effb545..2aebca79 100644 --- a/src/commands/General/ping.ts +++ b/src/commands/General/ping.ts @@ -22,7 +22,7 @@ export default class PingCommand { const content = localize["COMMANDS"]["PING"]["MESSAGE"]({ member: msg.inGuild() ? `${interaction.member},` : "", time: msg.createdTimestamp - interaction.createdTimestamp, - heartbeat: client.ws.ping ? `The heartbeat ping is ${Math.round(client.ws.ping)}ms.` : "" + heartbeat: client.ws.ping ? ` The heartbeat ping is ${Math.round(client.ws.ping)}ms.` : "" }) await msg.edit(content)