From 2a6745fe44b5cd25bf8e577e3730d8244fdece42 Mon Sep 17 00:00:00 2001 From: Inbestigator Date: Sun, 3 Mar 2024 18:21:36 -0800 Subject: [PATCH] Added leave tooltip --- src/plugins/encryptcord/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/encryptcord/index.tsx b/src/plugins/encryptcord/index.tsx index fcaadcb4d..d43707879 100644 --- a/src/plugins/encryptcord/index.tsx +++ b/src/plugins/encryptcord/index.tsx @@ -81,7 +81,7 @@ const ChatBarIcon: ChatBarButton = ({ isMainChat }) => { if (await DataStore.get('encryptcordGroup') == false || (await DataStore.get('encryptcordChannelId') != getCurrentChannel().id)) { setButtonDisabled(true); await sendTempMessage(getCurrentChannel().id, "", `join\`\`\`\n${await DataStore.get("encryptcordPublicKey")}\`\`\``, false); - sendBotMessage(getCurrentChannel().id, { content: `*Checking for any groups in this channel...*\n> If none is found, a new one will be created ` }); + sendBotMessage(getCurrentChannel().id, { content: `*Checking for any groups in this channel...*\n> If none is found, a new one will be created \n> You can do \`/encryptcord leave\` to leave the current group` }); await sleep(5000); if (await DataStore.get('encryptcordGroup') == true && (await DataStore.get('encryptcordChannelId') != getCurrentChannel().id)) { sendBotMessage(getCurrentChannel().id, { content: "*Leaving current group...*" });