chore: init
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -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")}>
|
||||
|
||||
@@ -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
|
||||
}
|
||||
],
|
||||
}
|
||||
Reference in New Issue
Block a user