aboutsummaryrefslogtreecommitdiff
path: root/src/plugins/STFU.ts
blob: d154b4f13c8638922288a47b96a1634ab9278a53 (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.+$/s,
            replace: ".default=function(){}}"
        }
    }]
});