diff --git a/src/plugins/banger.ts b/src/plugins/banger.ts new file mode 100644 index 000000000..be2fb3b95 --- /dev/null +++ b/src/plugins/banger.ts @@ -0,0 +1,16 @@ +import definePlugin from "../utils/types"; + +export default definePlugin({ + name: "BANger", + description: "Replaces the GIF in the ban dialogue with a custom one.", + author: "Xinto", + patches: [ + { + find: "BanConfirm", + replacement: { + match: /src:\w\(\d+\)/g, + replace: 'src: "https://i.imgur.com/wp5q52C.mp4"' + } + } + ], +}) \ No newline at end of file