diff options
author | Luca LeBlanc <67206487+yodaluca23@users.noreply.github.com> | 2023-04-16 18:43:11 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-17 01:43:11 +0200 |
commit | dac9cad8736b93f7d4f95fc178040aa679563cdb (patch) | |
tree | cab6c58f09612cd6b95b04febb423efe83491846 /src/plugins | |
parent | 6fd5c7874f87707259b0226e671b85ae43bfa8e3 (diff) | |
download | Vencord-dac9cad8736b93f7d4f95fc178040aa679563cdb.tar.gz Vencord-dac9cad8736b93f7d4f95fc178040aa679563cdb.tar.bz2 Vencord-dac9cad8736b93f7d4f95fc178040aa679563cdb.zip |
Improve FakeNitro emoji popup message (#924)
Co-authored-by: Nuckyz <61953774+Nuckyz@users.noreply.github.com>
Co-authored-by: V <vendicated@riseup.net>
Diffstat (limited to 'src/plugins')
-rw-r--r-- | src/plugins/fakeNitro.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/fakeNitro.tsx b/src/plugins/fakeNitro.tsx index 4a4f47d..fda9b6b 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; } |