diff options
Diffstat (limited to 'src/plugins/clientInfo.ts')
-rw-r--r-- | src/plugins/clientInfo.ts | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/src/plugins/clientInfo.ts b/src/plugins/clientInfo.ts deleted file mode 100644 index 77cc70c..0000000 --- a/src/plugins/clientInfo.ts +++ /dev/null @@ -1,17 +0,0 @@ -import definePlugin from "../utils/types"; - -export default definePlugin({ - name: "ClientInfo", - description: "Adds extra info to Client Info in settings", - author: "Vendicated", - patches: [{ - find: "default.versionHash", - replacement: { - match: /\w\.createElement.+?["']Host ["'].+?\):null/, - replace: m => { - const idx = m.indexOf("Host") - 1; - return `${m},${m.slice(0, idx)}"Vencord ".repeat(50),"1.0.0")," ")`; - } - } - }] -});
\ No newline at end of file |