mirror of
https://github.com/RobinRMC/VencordPlus.git
synced 2025-05-11 01:45:38 +02:00
Remove NSFWGateBypass
This plugin was always meant as a tool for adults who don't want to give Discord their birthday/ID. But obviously there's nothing stopping minors from using this which is troublesome legally and possibly could lead to me being legally liable for distributing it. Bypassing it is also becoming progressively harder with the changes Discord is making to abide with UK and Australia law. As such, I no longer feel comfortable providing this plugin. If you rely on this plugin (as an adult), find a suitable third party replacement from elsewhere.
This commit is contained in:
parent
73f68fe0b7
commit
9a3c66abfd
1 changed files with 0 additions and 41 deletions
|
@ -1,41 +0,0 @@
|
|||
/*
|
||||
* Vencord, a modification for Discord's desktop app
|
||||
* Copyright (c) 2025 Vendicated and contributors
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
import { Devs } from "@utils/constants";
|
||||
import definePlugin from "@utils/types";
|
||||
|
||||
export default definePlugin({
|
||||
name: "NSFWGateBypass",
|
||||
description: "Allows you to access NSFW channels without setting/verifying your age",
|
||||
authors: [Devs.Commandtechno],
|
||||
patches: [
|
||||
{
|
||||
find: ".nsfwAllowed=null",
|
||||
replacement: [
|
||||
{
|
||||
match: /(?<=\.nsfwAllowed=)null!=.+?(?=[,;])/,
|
||||
replace: "true",
|
||||
},
|
||||
{
|
||||
match: /(?<=\.ageVerificationStatus=)null!=.+?(?=[,;])/,
|
||||
replace: "3", // VERIFIED_ADULT
|
||||
}
|
||||
],
|
||||
}
|
||||
],
|
||||
});
|
Loading…
Add table
Add a link
Reference in a new issue