chore: init

This commit is contained in:
2025-12-27 17:29:54 +02:00
parent 7b85dc6e07
commit f07a3d8e42
4 changed files with 5 additions and 4 deletions

View File

@@ -536,6 +536,7 @@ export default definePlugin({
<Menu.MenuCheckboxItem <Menu.MenuCheckboxItem
key={badge.id} key={badge.id}
id={`badge-${badge.id}`} id={`badge-${badge.id}`}
// edited here to fix some error
// label={ // label={
// <div style={{ display: "flex", alignItems: "center", gap: "8px" }}> // <div style={{ display: "flex", alignItems: "center", gap: "8px" }}>
// <img // <img

View File

@@ -15,7 +15,7 @@ function SealDarkFountainDecoration({
}: { }: {
message: Message; message: Message;
}) { }) {
if (/dark (fountain|world)/gi.test(message.content) && /(delta(rune|goon))|prophecy/gi.test(message.content) || /^(hop|get) on deltarune/i.test(message.content.toLowerCase())) { if (/dark (fountain|world)/gi.test(message.content) && /(delta(rune|goon))|prophecy/gi.test(message.content) || /^((hop|get) on|g[ie]t g(u|oo)d (@|at)) delta(rune|goon)/i.test(message.content.toLowerCase())) {
return ( return (
<div> <div>
<Button type="button" variant="link" onClick={a => open("steam://rungameid/1671210")}> <Button type="button" variant="link" onClick={a => open("steam://rungameid/1671210")}>

View File

@@ -21,7 +21,7 @@ import definePlugin from "@utils/types";
export default definePlugin({ export default definePlugin({
name: "NSFWGateBypass", name: "NSFWGateBypass",
description: "Bypasses Age Verification", description: "Allows you to access NSFW channels without setting/verifying your age",
authors: [Devs.Commandtechno], authors: [Devs.Commandtechno],
patches: [ patches: [
{ {
@@ -29,11 +29,11 @@ export default definePlugin({
replacement: [ replacement: [
{ {
match: /(?<=\.nsfwAllowed=)null!=.+?(?=[,;])/, match: /(?<=\.nsfwAllowed=)null!=.+?(?=[,;])/,
replace: "true", // true replace: "true",
}, },
{ {
match: /(?<=\.ageVerificationStatus=)null!=.+?(?=[,;])/, match: /(?<=\.ageVerificationStatus=)null!=.+?(?=[,;])/,
replace: "3", // 3=VERIFIED_ADULT replace: "3", // VERIFIED_ADULT
} }
], ],
} }