diff options
| author | 8cy <[email protected]> | 2020-04-29 04:57:58 -0700 |
|---|---|---|
| committer | 8cy <[email protected]> | 2020-04-29 04:57:58 -0700 |
| commit | 04e6371dcf70a24f552f0e24892ee91be6782a31 (patch) | |
| tree | 3abca2b007c44300df29ca1952818e4c989ad14a /src/commands/nsfw | |
| parent | Cerasus, v9.0.0 (diff) | |
| download | dep-core-04e6371dcf70a24f552f0e24892ee91be6782a31.tar.xz dep-core-04e6371dcf70a24f552f0e24892ee91be6782a31.zip | |
formatting, blacklists, v9.0.1
Diffstat (limited to 'src/commands/nsfw')
| -rw-r--r-- | src/commands/nsfw/danbooru.ts | 2 | ||||
| -rw-r--r-- | src/commands/nsfw/gelbooru.ts | 2 | ||||
| -rw-r--r-- | src/commands/nsfw/rule34.ts | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/src/commands/nsfw/danbooru.ts b/src/commands/nsfw/danbooru.ts index 68bcc17..c3ba680 100644 --- a/src/commands/nsfw/danbooru.ts +++ b/src/commands/nsfw/danbooru.ts @@ -31,7 +31,7 @@ export default class DanbooruNSFW extends Command { } async run(msg: CommandoMessage, { tags }) { let randomInt = Math.floor(Math.random() * 100) - let blacklist = ['loli', 'shota', 'cub', 'young', 'child', 'baby', 'guro', 'gore', 'vore', 'scat']; + let blacklist = ['loli', 'shota', 'cub', 'young', 'child', 'baby', 'guro', 'gore', 'vore', 'scat', 'poop', 'kid', 'shit', 'turd', 'feces', 'excrement', 'excrete']; if (tags !== 0) { if (blacklist.includes(tags.toLowerCase())) { diff --git a/src/commands/nsfw/gelbooru.ts b/src/commands/nsfw/gelbooru.ts index 6a21c10..cd2ca1d 100644 --- a/src/commands/nsfw/gelbooru.ts +++ b/src/commands/nsfw/gelbooru.ts @@ -31,7 +31,7 @@ export default class GelbooruNSFW extends Command { } async run(msg: CommandoMessage, { tags }) { let randomInt = Math.floor(Math.random() * 100) - let blacklist = ['loli', 'shota', 'cub', 'young', 'child', 'baby', 'guro', 'gore', 'vore', 'scat']; + let blacklist = ['loli', 'shota', 'cub', 'young', 'child', 'baby', 'guro', 'gore', 'vore', 'scat', 'poop', 'kid', 'shit', 'turd', 'feces', 'excrement', 'excrete']; if (tags !== 0) { if (blacklist.includes(tags.toLowerCase())) { diff --git a/src/commands/nsfw/rule34.ts b/src/commands/nsfw/rule34.ts index 669fcad..2080d93 100644 --- a/src/commands/nsfw/rule34.ts +++ b/src/commands/nsfw/rule34.ts @@ -33,7 +33,7 @@ export default class Rule34NSFW extends Command { } async run(msg: CommandoMessage, { tags }) { let randomInt = Math.floor(Math.random() * 100) - let blacklist = ['loli', 'shota', 'cub', 'young', 'child', 'baby', 'guro', 'gore', 'vore', 'scat', 'poop']; + let blacklist = ['loli', 'shota', 'cub', 'young', 'child', 'baby', 'guro', 'gore', 'vore', 'scat', 'poop', 'kid', 'shit', 'turd', 'feces', 'excrement', 'excrete']; if (tags !== 0) { if (blacklist.includes(tags.toLowerCase())) { |