Vencord/src/plugins/banger.ts

20 lines
475 B
TypeScript
Raw Normal View History

2022-09-03 22:21:35 +00:00
import definePlugin from "../utils/types";
export default definePlugin({
name: "BANger",
description: "Replaces the GIF in the ban dialogue with a custom one.",
2022-10-01 00:27:28 +00:00
authors: [{
name: "Xinto",
id: 423915768191647755n
}],
2022-09-03 22:21:35 +00:00
patches: [
{
find: "BanConfirm",
replacement: {
match: /src:\w\(\d+\)/g,
replace: 'src: "https://i.imgur.com/wp5q52C.mp4"'
}
}
],
2022-09-16 20:59:34 +00:00
});