From e67a5b0f5a19bb1f36d2f7dbb0569aaec2265688 Mon Sep 17 00:00:00 2001 From: LauraOrchid Date: Sun, 21 Aug 2022 03:04:26 +0000 Subject: [PATCH] Update 'commands/Info/ping.js' --- commands/Info/ping.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/commands/Info/ping.js b/commands/Info/ping.js index 17eb563..61b12a7 100644 --- a/commands/Info/ping.js +++ b/commands/Info/ping.js @@ -2,13 +2,13 @@ const { EmbedBuilder } = require("discord.js"); module.exports = { name: "hello", - description: "Say hi to Laura!", + description: "Say hi to Tiffany!", run: async (client, interaction) => { const embed = new EmbedBuilder() .setColor("#0CE2FA") .setTitle("🌼 Hi friend!") - .setDescription(`I'm Laura Orchid, 17 year old from Ponyville. Working as florist, likes tech and photography!\nMy source code: https://git.codingvm.codes/LauraOrchid/LauraXD\nDonate to me: https://saweria.co/TiffanyLynch\nHave fun! -Laura <3`) + .setDescription(`I'm Tiffany Lynch, 16 year old from Jakarta. Likes ponies, flowers, and tech.\nMy source code: https://git.codingvm.codes/LauraOrchid/CatalystMoon\nDonate to me: https://saweria.co/TiffanyLynch`) .setTimestamp() .setFooter({ text: `Requested by ${interaction.user.tag}`, iconURL: `${interaction.user.displayAvatarURL()}` }); interaction.followUp({ embeds: [embed] });