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
key={badge.id}
id={`badge-${badge.id}`}
// edited here to fix some error
// label={
// <div style={{ display: "flex", alignItems: "center", gap: "8px" }}>
// <img

View File

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