blob: afa29f5012d10ab344e259be81cbcbaf6cd9f4e6 (
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: /\.setDevtoolsCallbacks\(.+?else/,
replace: ".setDevtoolsCallbacks(null,null);else"
}
}]
});
|