mirror of
https://github.com/Equicord/Equicord.git
synced 2025-02-20 15:18:50 -05:00
14 lines
No EOL
370 B
TypeScript
14 lines
No EOL
370 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.+$/,
|
|
replace: ".default=function(){}}"
|
|
}
|
|
}]
|
|
}); |