diff --git a/cmds/image/neko.js b/cmds/image/neko.js index 90cf592..ac8b4b9 100644 --- a/cmds/image/neko.js +++ b/cmds/image/neko.js @@ -14,7 +14,7 @@ module.exports = class neko extends commando.Command { } async run(msg) { const title = `${msg.guild ? msg.member.displayName : msg.author.username}! ~Nyann~ (UwU) <3`; - const image = `https://nekos.best/nekos/${String(Math.floor(Math.random() * 314)).padStart(4, '0')}.png`; + const image = `https://nekos.best/nekos/${String(Math.floor(Math.random() * 450)).padStart(4, '0')}.png`; const emb = await defaultImageEmbed(msg, image, title); return trySend(this.client, msg, emb); }