aboutsummaryrefslogtreecommitdiff
path: root/src/plugins/isStaff.ts
blob: c5a95d0d4b70bc82275e0de58095814f43b3ce62 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
import { Devs } from "../utils/constants";
import definePlugin from "../utils/types";

export default definePlugin({
    name: "isStaff",
    description:
        "Gives access to client devtools & other things locked behind isStaff",
    authors: [
        Devs.Megu,
        {
            name: "Nickyux",
            id: 427146305651998721n
        },
        {
            name: "BanTheNons",
            id: 460478012794863637n
        }
    ],
    patches: [
        {
            find: ".isStaff=function(){",
            replacement: [
                {
                    match: /return\s*(\w+)\.hasFlag\((.+?)\.STAFF\)}/,
                    replace: "return Vencord.Webpack.Common.UserStore.getCurrentUser().id===$1.id||$1.hasFlag($2.STAFF)}"
                },
                {
                    match: /hasFreePremium=function\(\){return this.isStaff\(\)\s*\|\|/,
                    replace: "hasFreePremium=function(){return ",
                },
            ],
        },
    ],
});