summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
author8cy <[email protected]>2020-04-29 04:57:58 -0700
committer8cy <[email protected]>2020-04-29 04:57:58 -0700
commit04e6371dcf70a24f552f0e24892ee91be6782a31 (patch)
tree3abca2b007c44300df29ca1952818e4c989ad14a /src
parentCerasus, v9.0.0 (diff)
downloaddep-core-04e6371dcf70a24f552f0e24892ee91be6782a31.tar.xz
dep-core-04e6371dcf70a24f552f0e24892ee91be6782a31.zip
formatting, blacklists, v9.0.1
Diffstat (limited to 'src')
-rw-r--r--src/commands/nsfw/danbooru.ts2
-rw-r--r--src/commands/nsfw/gelbooru.ts2
-rw-r--r--src/commands/nsfw/rule34.ts2
-rw-r--r--src/commands/roleplay/fistbump.ts2
-rw-r--r--src/commands/roleplay/highfive.ts2
-rw-r--r--src/commands/roleplay/hug.ts2
-rw-r--r--src/commands/roleplay/wave.ts2
-rw-r--r--src/commands/roleplay/wink.ts2
-rw-r--r--src/config.json2
9 files changed, 9 insertions, 9 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())) {
diff --git a/src/commands/roleplay/fistbump.ts b/src/commands/roleplay/fistbump.ts
index 1a2f6db..e60bc80 100644
--- a/src/commands/roleplay/fistbump.ts
+++ b/src/commands/roleplay/fistbump.ts
@@ -8,7 +8,7 @@ module.exports = class FistBumpRoleplay extends Command {
aliases: ['fist-bump'],
group: 'roleplay',
memberName: 'fistbump',
- description: 'Fist-bump with a specified user.',
+ description: 'Fist-bump a specified user.',
examples: ['uwu!fistbump @sin#1337'],
userPermissions: ['SEND_MESSAGES', 'READ_MESSAGE_HISTORY'],
clientPermissions: ['SEND_MESSAGES', 'READ_MESSAGE_HISTORY'],
diff --git a/src/commands/roleplay/highfive.ts b/src/commands/roleplay/highfive.ts
index bb9435d..52dfa3d 100644
--- a/src/commands/roleplay/highfive.ts
+++ b/src/commands/roleplay/highfive.ts
@@ -8,7 +8,7 @@ module.exports = class HighFiveRoleplay extends Command {
aliases: ['high-five'],
group: 'roleplay',
memberName: 'highfive',
- description: 'High-fave with a specified user.',
+ description: 'High-fave a specified user.',
examples: ['uwu!highfive @sin#1337'],
userPermissions: ['SEND_MESSAGES', 'READ_MESSAGE_HISTORY'],
clientPermissions: ['SEND_MESSAGES', 'READ_MESSAGE_HISTORY'],
diff --git a/src/commands/roleplay/hug.ts b/src/commands/roleplay/hug.ts
index 06e267b..b77f681 100644
--- a/src/commands/roleplay/hug.ts
+++ b/src/commands/roleplay/hug.ts
@@ -7,7 +7,7 @@ module.exports = class HugRoleplay extends Command {
name: 'hug',
group: 'roleplay',
memberName: 'hug',
- description: 'Hug hands with a specified user.',
+ description: 'Hug a specified user.',
examples: ['uwu!hug @sin#1337'],
userPermissions: ['SEND_MESSAGES', 'READ_MESSAGE_HISTORY'],
clientPermissions: ['SEND_MESSAGES', 'READ_MESSAGE_HISTORY'],
diff --git a/src/commands/roleplay/wave.ts b/src/commands/roleplay/wave.ts
index 32b9f6e..5c0b0f2 100644
--- a/src/commands/roleplay/wave.ts
+++ b/src/commands/roleplay/wave.ts
@@ -7,7 +7,7 @@ module.exports = class WaveRoleplay extends Command {
name: 'wave',
group: 'roleplay',
memberName: 'wave',
- description: 'Wave a specified user.',
+ description: 'Wave at a specified user.',
examples: ['uwu!wave @sin#1337'],
userPermissions: ['SEND_MESSAGES', 'READ_MESSAGE_HISTORY'],
clientPermissions: ['SEND_MESSAGES', 'READ_MESSAGE_HISTORY'],
diff --git a/src/commands/roleplay/wink.ts b/src/commands/roleplay/wink.ts
index a3360ee..dd80613 100644
--- a/src/commands/roleplay/wink.ts
+++ b/src/commands/roleplay/wink.ts
@@ -7,7 +7,7 @@ module.exports = class WinkRoleplay extends Command {
name: 'wink',
group: 'roleplay',
memberName: 'wink',
- description: 'Wink a specified user.',
+ description: 'Wink at a specified user.',
examples: ['uwu!wink @sin#1337'],
userPermissions: ['SEND_MESSAGES', 'READ_MESSAGE_HISTORY'],
clientPermissions: ['SEND_MESSAGES', 'READ_MESSAGE_HISTORY'],
diff --git a/src/config.json b/src/config.json
index e015555..72067c6 100644
--- a/src/config.json
+++ b/src/config.json
@@ -1,7 +1,7 @@
{
"secret":"Njk5NDczMjYzOTk4MjcxNDg5.XpU5oQ.btZuxVudhNllSQY6CxrXXtMJm9A",
"yt-api-key":"AIzaSyCeG1lQAeInv4vjFv_eTL9IFAFNdQC9Nk8",
- "version":"9.0.0",
+ "version":"9.0.1",
"fortniteTrackerNetworkToken": "4cf21f95-5f1a-412a-b4a7-e5424adc314a",
"maxMultipler": 100,
"minMultipler": 1.01