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

export default definePlugin({
    name: "STFU",
    description: "Disabled the fat warning in the DevTools console",
    author: "Vendicated",
    start() {
        window.DiscordNative.window.setDevtoolsCallbacks(null, null);
    }
});