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
1/*
2 * FiveCord — a Discord client mod
3 * Copyright (c) 2025 FiveCord
4 * SPDX-License-Identifier: GPL-3.0-or-later
5 */
6
7import { Devs } from "@utils/constants";
8import definePlugin from "@utils/types";
9
10export default definePlugin({
11 name: "StickerPaste",
12 description: "Makes picking a sticker in the sticker picker insert it into the chatbox instead of instantly sending",
13 tags: ["Emotes", "Chat"],
14 authors: [Devs.ImBanana],
15
16 patches: [
17 {
18 find: ".stickers,previewSticker:",
19 replacement: {
20 match: /if\(\i\.\i\.getUploadCount/,
21 replace: "return true;$&",
22 }
23 }
24 ]
25});
26