diff options
author | IRONM00N <64110067+IRONM00N@users.noreply.github.com> | 2022-10-16 18:54:47 -0400 |
---|---|---|
committer | IRONM00N <64110067+IRONM00N@users.noreply.github.com> | 2022-10-16 18:54:47 -0400 |
commit | 2b12b94e08f4ffdbb35d6f623604657944450a82 (patch) | |
tree | 9b2bfd0830e0cfa24884cb8b7d50946b9b1dac02 /src/commands | |
parent | 0f1b5d796c432c073d38215865a8d8f6aec3657d (diff) | |
download | tanzanite-2b12b94e08f4ffdbb35d6f623604657944450a82.tar.gz tanzanite-2b12b94e08f4ffdbb35d6f623604657944450a82.tar.bz2 tanzanite-2b12b94e08f4ffdbb35d6f623604657944450a82.zip |
update sync automod url
Diffstat (limited to 'src/commands')
-rw-r--r-- | src/commands/dev/syncAutomod.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/commands/dev/syncAutomod.ts b/src/commands/dev/syncAutomod.ts index 087d7e6..40687f9 100644 --- a/src/commands/dev/syncAutomod.ts +++ b/src/commands/dev/syncAutomod.ts @@ -21,10 +21,10 @@ export default class SyncAutomodCommand extends BotCommand { if (!message.author.isOwner() && message.author.id !== '497789163555389441') return await message.util.reply(`${emojis.error} Only a very select few may use this command.`); - const badLinks = await fetch('https://raw.githubusercontent.com/NotEnoughUpdates/bush-bot/master/lib/badlinks.ts').then((p) => + const badLinks = await fetch('https://raw.githubusercontent.com/TanzaniteBot/tanzanite/master/lib/badlinks.ts').then((p) => p.ok ? p.text() : null ); - const badWords = await fetch('https://raw.githubusercontent.com/NotEnoughUpdates/bush-bot/master/lib/badwords.ts').then((p) => + const badWords = await fetch('https://raw.githubusercontent.com/TanzaniteBot/tanzanite/master/lib/badwords.ts').then((p) => p.ok ? p.text() : null ); |