Plugin
StickerPaste
Makes picking a sticker in the sticker picker insert it into the chatbox instead of instantly sending
1
/*2
* FiveCord — a Discord client mod3
* Copyright (c) 2025 FiveCord4
* SPDX-License-Identifier: GPL-3.0-or-later5
*/6
7
import { Devs } from "@utils/constants";8
import definePlugin from "@utils/types";9
10
export 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