From 2b12b94e08f4ffdbb35d6f623604657944450a82 Mon Sep 17 00:00:00 2001 From: IRONM00N <64110067+IRONM00N@users.noreply.github.com> Date: Sun, 16 Oct 2022 18:54:47 -0400 Subject: update sync automod url --- src/commands/dev/syncAutomod.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/commands') 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 ); -- cgit