From 369cff7423b2fdf79d0db389b28b4092efbedfc8 Mon Sep 17 00:00:00 2001 From: Navy Date: Fri, 1 May 2020 17:13:12 +0300 Subject: [PATCH] message.guild.format -> message.format --- structure/client/components/commands/utility/Ping.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/structure/client/components/commands/utility/Ping.js b/structure/client/components/commands/utility/Ping.js index 53b8000..30187de 100644 --- a/structure/client/components/commands/utility/Ping.js +++ b/structure/client/components/commands/utility/Ping.js @@ -17,7 +17,7 @@ class PingCommand extends Command { async execute(message) { const ping = this.client.ws.ping.toFixed(0); - return message.respond(`${message.guild.format('PING_COMMAND_RESPONSE')} \`${ping}ms\``, { emoji: 'success' }); + return message.respond(`${message.format('PING_COMMAND_RESPONSE')} \`${ping}ms\``, { emoji: 'success' }); } }