Plugin
StickerPaste
Makes picking a sticker in the sticker picker insert it into the chatbox instead of instantly sending
1
import { Devs } from "@utils/constants";2
import definePlugin from "@utils/types";3
4
export 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