Various Fixes

This commit is contained in:
Dragon Fire
2021-01-12 21:51:38 -05:00
parent af8cf9858c
commit fc34b306bc
10 changed files with 1710 additions and 20 deletions
+2 -2
View File
@@ -12,7 +12,7 @@ module.exports = class AiFursonaCommand extends Command {
credit: [
{
name: 'This Fursona Does Not Exist',
url: 'https://thisfursonadoesnotexist.com/',
url: 'http://thisfursonadoesnotexist.com/',
reason: 'API'
}
]
@@ -22,7 +22,7 @@ module.exports = class AiFursonaCommand extends Command {
run(msg) {
const num = Math.floor(Math.random() * 100000);
return msg.say(`AI-Generated Fursona #${num}`, {
files: [`https://thisfursonadoesnotexist.com/v2/jpgs/seed${num.toString().padStart(5, '0')}.jpg`]
files: [`http://thisfursonadoesnotexist.com/v2/jpgs/seed${num.toString().padStart(5, '0')}.jpg`]
});
}
};