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

export default definePlugin({
    name: "STFU",
    description: "Disables the 'HOLD UP' banner in the console",
    authors: [Devs.Ven],
    patches: [{
        find: "setDevtoolsCallbacks",
        replacement: {
            match: /if\(.{0,10}\|\|"0.0.0"!==.{0,2}\.remoteApp\.getVersion\(\)\)/,
            replace: "if(false)"
        }
    }]
});