Plugin

StickerPaste

Makes picking a sticker in the sticker picker insert it into the chatbox instead of instantly sending

Emotes Chat
index.ts
Download

Source

src/plugins/stickerPaste/index.ts
1import { Devs } from "@utils/constants";
2import definePlugin from "@utils/types";
3
4export default definePlugin({
5 name: "StickerPaste",
6 description: "Makes picking a sticker in the sticker picker insert it into the chatbox instead of instantly sending",
7 tags: ["Emotes", "Chat"],
8 authors: [Devs.ImBanana],
9
10 patches: [
11 {
12 find: ".stickers,previewSticker:",
13 replacement: {
14 match: /if\(\i\.\i\.getUploadCount/,
15 replace: "return true;$&",
16 }
17 }
18 ]
19});
20