Vencord/src/plugins/STFU.ts
2022-09-07 15:38:50 +02:00

14 lines
No EOL
371 B
TypeScript

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.+$/s,
replace: ".default=function(){}}"
}
}]
});