Skip to content

Commit

Permalink
fix: remove curly bracket from string about ping
Browse files Browse the repository at this point in the history
  • Loading branch information
SocketSomeone committed Dec 25, 2023
1 parent 5f8bc7a commit 8f17f37
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/general/general.commands.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ export class GeneralCommands {
@SlashCommand({ name: 'ping', description: '🚀 Get bot ping' })
public async ping(@Context() [interaction]: SlashCommandContext) {
return interaction.reply({
content: `Pong! ${inlineCode(`${Math.round(this.client.ws.ping)}ms`)}}`,
content: `Pong! ${inlineCode(`${Math.round(this.client.ws.ping)}ms`)}`,
ephemeral: true
});
}
Expand Down

0 comments on commit 8f17f37

Please sign in to comment.