SilentTyping
This commit is contained in:
parent
86c4bb7f8c
commit
3c2bbb698a
1 changed files with 14 additions and 0 deletions
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