Lots of small changes

This commit is contained in:
lilyissillyyy
2025-08-26 22:30:54 -04:00
parent 5048fbe243
commit bda18aa3ae
11 changed files with 183 additions and 169 deletions
+2 -2
View File
@@ -11,7 +11,7 @@ module.exports = class BoredomCommand extends Command {
credit: [
{
name: 'Bored API',
url: 'https://www.boredapi.com/',
url: 'https://bored.api.lewagon.com/',
reason: 'API'
}
]
@@ -19,7 +19,7 @@ module.exports = class BoredomCommand extends Command {
}
async run(msg) {
const { body } = await request.get('https://www.boredapi.com/api/activity/');
const { body } = await request.get('https://bored.api.lewagon.com/api/activity/');
return msg.say(`${body.activity} (${body.type})`);
}
};