diff --git a/src/plugins/bypassAutomod.ts b/src/plugins/bypassAutomod.ts
new file mode 100644
index 000000000..145c28e7a
--- /dev/null
+++ b/src/plugins/bypassAutomod.ts
@@ -0,0 +1,27 @@
+import { Devs } from "../utils/constants";
+import definePlugin from "../utils/types";
+import { addPreEditListener, addPreSendListener, MessageObject, removePreEditListener, removePreSendListener } from "../api/MessageEvents";
+
+
+export default definePlugin({
+ name: "Bypass Automod",
+ description: "Bypasses the automod",
+ version: "1.0.0",
+ authors: [Devs.mantikafasi],
+ start() {
+ return
+
+ addPreSendListener((_, msg) => {
+ var newMsg = "";
+ msg.content.split(" ").forEach((word, _) => {
+ if (word.length < 2) return
+ let i = Math.round(Math.random() * (word.length - 1));
+ console.log(i,word)
+ newMsg += word.replace(word[i], word[i] + "\u200C\u2062\u2063\u2064\u200d") + " ";
+ });
+ msg.content = newMsg.concat();
+ });
+
+ }
+}
+);
diff --git a/src/plugins/reviewDB/components/ReviewBadge.tsx b/src/plugins/reviewDB/components/ReviewBadge.tsx
new file mode 100644
index 000000000..a290f8af7
--- /dev/null
+++ b/src/plugins/reviewDB/components/ReviewBadge.tsx
@@ -0,0 +1,25 @@
+import { IpcEvents } from "../../../utils";
+import { Tooltip } from "../../../webpack/common";
+
+import Badge from "../entities/Badge";
+
+export default function ReviewBadge(badge: Badge) {
+ return (
+
+ VencordNative.ipc.invoke(IpcEvents.OPEN_EXTERNAL, badge.redirect_url)
+ }
+ />
+ )}
+
{review.comment}
diff --git a/src/plugins/reviewDB/components/ReviewsView.tsx b/src/plugins/reviewDB/components/ReviewsView.tsx index 9fe7b9ee4..17a5dcbc0 100644 --- a/src/plugins/reviewDB/components/ReviewsView.tsx +++ b/src/plugins/reviewDB/components/ReviewsView.tsx @@ -51,7 +51,6 @@ export default function ReviewsView({ userId }: { userId: string; }) { tag="h2" variant="eyebrow" style={{ - paddingLeft: "12px", marginBottom: "12px", color: "var(--header-primary)" }} @@ -66,16 +65,19 @@ export default function ReviewsView({ userId }: { userId: string; }) { /> )} {reviews?.length === 0 && ( -