aboutsummaryrefslogtreecommitdiff
path: root/src/plugins/STFU.ts
blob: ee9c90f38318efcf454e6cd7abb03bf9e4c474b3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import definePlugin from "../utils/types";

export default definePlugin({
    name: "STFU",
    description: "Disables the 'HOLD UP' banner in the console",
    author: "Vendicated",
    patches: [{
        find: "setDevtoolsCallbacks",
        replacement: {
            match: /\.default=function.+$/,
            replace: ".default=function(){}}"
        }
    }]
});