From 55f86944d7b8c9c26f5cec8165ea382f6f741405 Mon Sep 17 00:00:00 2001 From: Neko Life Date: Sun, 13 Jun 2021 23:57:33 +0000 Subject: [PATCH] bump neko counter --- cmds/image/neko.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); }