SilentTyping

This commit is contained in:
Vendicated 2022-09-29 22:02:01 +02:00
parent 86c4bb7f8c
commit 3c2bbb698a
No known key found for this signature in database
GPG Key ID: EC781ADFB93EFFA3

@ -0,0 +1,14 @@
import definePlugin from '../utils/types';
export default definePlugin({
name: "SilentTyping",
author: "Vendicated",
description: "Hide that you are typing",
patches: [{
find: "startTyping:",
replacement: {
match: /startTyping:.+?,stop/,
replace: "startTyping:()=>{},stop"
}
}]
});