1
0
mirror of https://github.com/toast-ts/Daggerbot-TS.git synced 2024-09-29 12:30:58 -04:00

Fix file extension in URL

This commit is contained in:
toast-ts 2024-01-02 03:31:07 +11:00
parent 25019d2e52
commit 3208030313

View File

@ -52,7 +52,7 @@ export default class Academy {
]}),
update: async()=>{
if (!client.config.whitelist.includes(interaction.user.id)) return MessageTool.youNeedRole(interaction, 'bottech');
const articles = await Undici.fetch('https://raw.githubusercontent.com/AnxietyisReal/Daggerbot-TS/master/src/articles.yml').then(x=>x.text());
const articles = await Undici.fetch('https://raw.githubusercontent.com/AnxietyisReal/Daggerbot-TS/master/src/articles.yaml').then(x=>x.text());
writeFileSync('src/articles.yml', articles, 'utf8');
await interaction.reply({embeds: [new client.embed()
.setColor(client.config.embedColorGreen)