mirror of
https://github.com/arthur-pbty/xiao.git
synced 2026-06-24 02:15:10 +02:00
Remove NSFW Group
This commit is contained in:
@@ -6,7 +6,7 @@ module.exports = class DickCommand extends Command {
|
||||
super(client, {
|
||||
name: 'dick',
|
||||
aliases: ['dick-size', 'penis', 'penis-size', 'pee-pee', 'pee-pee-size', 'cock', 'cock-size'],
|
||||
group: 'nsfw',
|
||||
group: 'analyze',
|
||||
memberName: 'dick',
|
||||
description: 'Determines your dick size.',
|
||||
nsfw: true,
|
||||
@@ -7,7 +7,7 @@ module.exports = class BrazzersCommand extends Command {
|
||||
constructor(client) {
|
||||
super(client, {
|
||||
name: 'brazzers',
|
||||
group: 'nsfw',
|
||||
group: 'image-edit',
|
||||
memberName: 'brazzers',
|
||||
description: 'Draws an image with the Brazzers logo in the corner.',
|
||||
nsfw: true,
|
||||
@@ -7,7 +7,7 @@ module.exports = class LightNovelCoverCommand extends Command {
|
||||
super(client, {
|
||||
name: 'light-novel-cover',
|
||||
aliases: ['ln-cover'],
|
||||
group: 'nsfw',
|
||||
group: 'random',
|
||||
memberName: 'light-novel-cover',
|
||||
description: 'Responds with a randomly generated Light Novel cover.',
|
||||
nsfw: true,
|
||||
@@ -25,7 +25,7 @@ module.exports = class GenerateCommandsCommand extends Command {
|
||||
async run(msg) {
|
||||
const list = this.client.registry.groups
|
||||
.map(g => `\n### ${g.name}:\n\n${g.commands.filter(c => !c.hidden).map(
|
||||
c => `* **${c.name}:** ${c.description}${c.ownerOnly ? ' (Owner-Only)' : ''}`
|
||||
c => `* **${c.name}:** ${c.description}${c.ownerOnly ? ' (Owner-Only)' : ''}${c.nsfw ? ' (NSFW)' : ''}`
|
||||
).join('\n')}`);
|
||||
const { body } = await request
|
||||
.post('https://hastebin.com/documents')
|
||||
|
||||
@@ -6,7 +6,7 @@ module.exports = class DanbooruCommand extends Command {
|
||||
super(client, {
|
||||
name: 'danbooru',
|
||||
aliases: ['hentai'],
|
||||
group: 'nsfw',
|
||||
group: 'search',
|
||||
memberName: 'danbooru',
|
||||
description: 'Responds with an image from Danbooru, with optional query.',
|
||||
nsfw: true,
|
||||
@@ -6,7 +6,7 @@ module.exports = class FlickrCommand extends Command {
|
||||
constructor(client) {
|
||||
super(client, {
|
||||
name: 'flickr',
|
||||
group: 'nsfw',
|
||||
group: 'search',
|
||||
memberName: 'flickr',
|
||||
description: 'Searches Flickr for your query... Maybe.',
|
||||
nsfw: true,
|
||||
Reference in New Issue
Block a user