From b7225136623a8a94d74e754a99aa73ae83718f52 Mon Sep 17 00:00:00 2001 From: byron <47872200+byeoon@users.noreply.github.com> Date: Sun, 31 Mar 2024 22:40:16 -0400 Subject: [PATCH] add debug to check sticker output --- src/plugins/emoteCloner/index.tsx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/plugins/emoteCloner/index.tsx b/src/plugins/emoteCloner/index.tsx index 4c0fe94ad..cf252edf8 100644 --- a/src/plugins/emoteCloner/index.tsx +++ b/src/plugins/emoteCloner/index.tsx @@ -145,8 +145,10 @@ async function fetchBlob(url: string) { async function doClone(guildId: string, data: Sticker | Emoji) { try { - if (data.t === "Sticker") + if (data.t === "Sticker") { + new Logger("EmoteCloner").info("hiiii hi hi hi :3 " + data); await cloneSticker(guildId, data); + } else await cloneEmoji(guildId, data);