Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
Glazelf committed Feb 20, 2025
1 parent 85612e1 commit fa997eb
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions commands/info/ping.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,12 @@ export default async (interaction, messageFlags) => {
let commandPing = Math.abs(Date.now() - interaction.createdTimestamp);
let websocketPing = Math.abs(interaction.client.ws.ping);
let replyString = `Pong!\n- Websocket ping is ${websocketPing}ms.\n- Command ping is ${commandPing}ms.`;

let problemChannel = await interaction.client.channels.fetch("581776008978497537");
console.log(problemChannel);
console.log("test")


return sendMessage({ interaction: interaction, content: replyString, flags: messageFlags.add(MessageFlags.Ephemeral) });
};

Expand Down

0 comments on commit fa997eb

Please sign in to comment.