From dac9cad8736b93f7d4f95fc178040aa679563cdb Mon Sep 17 00:00:00 2001 From: Luca LeBlanc <67206487+yodaluca23@users.noreply.github.com> Date: Sun, 16 Apr 2023 18:43:11 -0500 Subject: [PATCH] Improve FakeNitro emoji popup message (#924) Co-authored-by: Nuckyz <61953774+Nuckyz@users.noreply.github.com> Co-authored-by: V --- src/plugins/fakeNitro.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/plugins/fakeNitro.tsx b/src/plugins/fakeNitro.tsx index 4a4f47d6..fda9b6b7 100644 --- a/src/plugins/fakeNitro.tsx +++ b/src/plugins/fakeNitro.tsx @@ -534,12 +534,12 @@ export default definePlugin({ switch (type) { case "STICKER": { - node.push(" This is a Fake Nitro sticker. Only you can see it rendered like a real one, for non Vencord users it will show as a link."); + node.push(" This is a FakeNitro sticker and renders like a real sticker only for you. Appears as a link to non-plugin users."); return node; } case "EMOJI": { - node.push(" This is a Fake Nitro emoji. Only you can see it rendered like a real one, for non Vencord users it will show as a link."); + node.push(" This is a FakeNitro emoji and renders like a real emoji only for you. Appears as a link to non-plugin users."); return node; }