From 4f218da3192d5981d5cd39b1a735fb4bff9addcf Mon Sep 17 00:00:00 2001 From: Inbestigator Date: Wed, 6 Mar 2024 09:11:22 -0800 Subject: [PATCH] Added clarification --- src/plugins/bypassDND/index.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/plugins/bypassDND/index.tsx b/src/plugins/bypassDND/index.tsx index 92520cdc3..2ccd0cc5c 100644 --- a/src/plugins/bypassDND/index.tsx +++ b/src/plugins/bypassDND/index.tsx @@ -105,7 +105,7 @@ const settings = definePluginSettings({ }, users: { type: OptionType.STRING, - description: "Users to let bypass (notified for all messages)", + description: "Users to let bypass (notified for all messages sent in DMs)", default: "", placeholder: "Separate with commas", onChange: async function (value) { @@ -115,7 +115,7 @@ const settings = definePluginSettings({ }, allowOutsideOfDm: { type: OptionType.BOOLEAN, - description: "Allow selected users to send notifications outside of DM (acts like a channel/guild bypass, but it's for all messages sent by the selected users)", + description: "Allow selected users to bypass DND outside of DM too (acts like a channel/guild bypass, but it's for all messages sent by the selected users)", } });