aboutsummaryrefslogtreecommitdiff
path: root/src/plugins/STFU.ts
blob: 38b206410a6d8fac1bb5b1ba33dae8f1dd7e9877 (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(){}}"
        }
    }]
});