SilentTyping
This commit is contained in:
parent
86c4bb7f8c
commit
3c2bbb698a
14
src/plugins/silentTyping.ts
Normal file
14
src/plugins/silentTyping.ts
Normal file
|
@ -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"
|
||||||
|
}
|
||||||
|
}]
|
||||||
|
});
|
Loading…
Reference in a new issue