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